From 98894ac946ff39f5368218dba93cada64f38e33d Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Tue, 7 Sep 2010 15:33:04 +0000 Subject: [PATCH] 2010-09-06 Miguel de Dios * extensions/plugin_registration.php: fixed the translation string previous to form. Fixes: #3053312 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3222 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 6 ++++++ pandora_console/extensions/plugin_registration.php | 7 ++++--- 2 files changed, 10 insertions(+), 3 deletions(-) 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; }