From 06c87135c58e59e63f71d4eaafd32c33f1582090 Mon Sep 17 00:00:00 2001 From: garvinhicking Date: Mon, 24 Oct 2005 09:37:04 +0000 Subject: [PATCH] Show plugin versions on plugin overview --- docs/NEWS | 1 + include/admin/plugins.inc.php | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/NEWS b/docs/NEWS index 43c536a..39b7636 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -3,6 +3,7 @@ Version 0.9-beta4 () ------------------------------------------------------------------------ + * Show installed plugin versions in plugin overview (garvinhicking) Version 0.9-beta3 (October 21st, 2005) ------------------------------------------------------------------------ diff --git a/include/admin/plugins.inc.php b/include/admin/plugins.inc.php index f04c806..20f116f 100644 --- a/include/admin/plugins.inc.php +++ b/include/admin/plugins.inc.php @@ -84,6 +84,7 @@ function show_plugins($event_only = false) $name = htmlspecialchars($bag->get('name')); $desc = htmlspecialchars($bag->get('description')); + $desc .= '
' . VERSION . ': ' . $bag->get('version') . ''; $title = serendipity_plugin_api::get_plugin_title($plugin, '[' . $name . ']'); -- 2.39.5