From daa0c5b8d740d8214008924c89e472897cddce89 Mon Sep 17 00:00:00 2001 From: pdontthink Date: Tue, 14 Aug 2007 20:57:42 +0000 Subject: [PATCH] Show English plugin name in configtest plugins list git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12584 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/configtest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/configtest.php b/src/configtest.php index 9a92669c..224db87a 100644 --- a/src/configtest.php +++ b/src/configtest.php @@ -417,7 +417,8 @@ if (isset($plugins[0])) { echo $IND . "Plugin versions...
\n"; foreach ($plugins as $name) { $plugin_version = get_plugin_version($name); - echo $IND . $IND . $name . ' ' . (empty($plugin_version) ? '??' : $plugin_version) . "
\n"; + $english_name = get_plugin_requirement($name, 'english_name'); + echo $IND . $IND . (empty($english_name) ? $name . ' ' : $english_name . ' (' . $name . ') ') . (empty($plugin_version) ? '??' : $plugin_version) . "
\n"; // check if this plugin has any other plugin // dependencies and if they are satisfied -- 2.25.1