2013-02-12 Sancho Lerena <slerena@artica.es>

* extensions/update_manager/load_updatemanager.php
        extensions/update_manager/settings.php
        extensions/update_manager/main.php: removed binary system in 
        update manager. Removed two fields in setup and reformatted
        popup window on update info. This goes in 4.0.3 SP1.




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7629 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
slerena 2013-02-12 12:28:58 +00:00
parent da09682de3
commit a782f67fc7
3 changed files with 12 additions and 9 deletions

View File

@ -1,3 +1,11 @@
2013-02-12 Sancho Lerena <slerena@artica.es>
* extensions/update_manager/load_updatemanager.php
extensions/update_manager/settings.php
extensions/update_manager/main.php: removed binary system in
update manager. Removed two fields in setup and reformatted
popup window on update info. This goes in 4.0.3 SP1.
2013-02-12 Sergio Martin <sergio.martin@artica.es> 2013-02-12 Sergio Martin <sergio.martin@artica.es>
* extensions/plugin_registration.php: Added a extra Parameter in the * extensions/plugin_registration.php: Added a extra Parameter in the

View File

@ -198,12 +198,13 @@ function main_view_enterprise($settings, $user_key) {
resizable: false, resizable: false,
draggable: false, draggable: false,
modal: true, modal: true,
height: 400, height: 430,
width: 600, width: 630,
overlay: { overlay: {
opacity: 0.5, opacity: 0.5,
background: "black" background: "black"
} },
bgiframe: jQuery.browser.msie
}); });
$("#dialog").show(); $("#dialog").show();
} }

View File

@ -81,12 +81,6 @@ $table->data[2][1] = html_print_input_text ('keys[update_server_path]', $setting
$table->data[3][0] = '<strong>'.__('Update server port').'</strong>'; $table->data[3][0] = '<strong>'.__('Update server port').'</strong>';
$table->data[3][1] = html_print_input_text ('keys[update_server_port]', $settings->update_server_port, '', 5, 5, true); $table->data[3][1] = html_print_input_text ('keys[update_server_port]', $settings->update_server_port, '', 5, 5, true);
$table->data[4][0] = '<strong>'.__('Binary input path').'</strong>';
$table->data[4][1] = html_print_input_text ('keys[updating_binary_path]', $settings->updating_binary_path, '', 40, 255, true);
$table->data[5][0] = '<strong>'.__('Keygen path').'</strong>';
$table->data[5][1] = html_print_input_text ('keys[keygen_path]', $settings->keygen_path, '', 40, 255, true);
$table->data[6][0] = '<strong>'.__('Proxy server').'</strong>'; $table->data[6][0] = '<strong>'.__('Proxy server').'</strong>';
$table->data[6][1] = html_print_input_text ('keys[proxy]', $settings->proxy, '', 40, 255, true); $table->data[6][1] = html_print_input_text ('keys[proxy]', $settings->proxy, '', 40, 255, true);