diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index d2474a0be0..1c89619304 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2010-09-06 Miguel de Dios + + * extensions/plugin_registration.php: fixed the translation string previous + to form. + Fixes: #3053312 + 2010-09-06 Miguel de Dios * operation/events/sound_events.php: fixed the location of image in the diff --git a/pandora_console/extensions/plugin_registration.php b/pandora_console/extensions/plugin_registration.php index f2a86f9c64..b478bbb68f 100644 --- a/pandora_console/extensions/plugin_registration.php +++ b/pandora_console/extensions/plugin_registration.php @@ -24,7 +24,7 @@ function pluginreg_extension_main () { print_page_header (__('Plugin registration'), "images/extensions.png", false, "", true, "" ); echo "
"; - echo __("This extension makes registration of server plugins more easy. Here you can upload a server plugin in Pandora FMS 3.x zipped format (.pspz). Please refer to documentation on how to obtain and use Pandora FMS Server Plugins.

You can get more plugins in our Public Resource Library"); + printf(__("This extension makes registration of server plugins more easy. Here you can upload a server plugin in Pandora FMS 3.x zipped format (.pspz). Please refer to documentation on how to obtain and use Pandora FMS Server Plugins.

You can get more plugins in our Public Resource Library") , "http://pandorafms.org/index.php?sec=community&sec2=repository&lng=en"); echo "
"; echo "

"; @@ -33,9 +33,10 @@ function pluginreg_extension_main () { // Upload form echo "
"; echo ''; - echo "
"; - echo ""; + echo "
"; + echo ""; echo "
"; + return; }