From cab8b481ccb7bd880855a214e4d8f61b8d7a2c96 Mon Sep 17 00:00:00 2001 From: slerena Date: Sun, 21 Feb 2010 18:50:00 +0000 Subject: [PATCH] 2010-02-20 Sancho Lerena * godmode/setup/setup.php: Fixed bug #2952636, thanks Junichi for the patch. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2393 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 3 +++ pandora_console/godmode/setup/setup.php | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 4e37493fde..75578345a2 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,5 +1,8 @@ 2010-02-20 Sancho Lerena + * godmode/setup/setup.php: Fixed bug #2952636, thanks Junichi for the + patch. + * include/gettext.php: Applied patch to solve problem in 64bit systems. Thanks Junichi!. diff --git a/pandora_console/godmode/setup/setup.php b/pandora_console/godmode/setup/setup.php index 8724864f4b..a7ead4c61b 100644 --- a/pandora_console/godmode/setup/setup.php +++ b/pandora_console/godmode/setup/setup.php @@ -74,9 +74,9 @@ $table->data[6][1] = print_input_text ('loginhash_pwd', $config["loginhash_pwd"] $table->data[8][0] = __('Timestamp or time comparation') . print_help_icon ("time_stamp-comparation", true); $table->data[8][1] = __('Comparation in rollover').' '; -$table->data[8][1] .= print_radio_button ('prominent_time', "timestamp", '', $config["prominent_time"], true); +$table->data[8][1] .= print_radio_button ('prominent_time', "comparation", '', $config["prominent_time"], true); $table->data[8][1] .= '
'.__('Timestamp in rollover').' '; -$table->data[8][1] .= print_radio_button ('prominent_time', "comparation", '', $config["prominent_time"], true); +$table->data[8][1] .= print_radio_button ('prominent_time', "timestamp", '', $config["prominent_time"], true); $table->data[9][0] = __('Time source') . print_help_icon ("timesource", true); $sources["system"] = __('System');