Fixed errors in um online open
This commit is contained in:
parent
8fc433f2a8
commit
c9fd56df75
|
@ -610,8 +610,6 @@ function update_manager_extract_package() {
|
|||
$path_package = $config['attachment_store'] .
|
||||
"/downloads/last_package.tgz";
|
||||
|
||||
$full_path = $config['attachment_store'] . "/downloads/unix";
|
||||
|
||||
ob_start();
|
||||
|
||||
if (!defined('PHP_VERSION_ID')) {
|
||||
|
@ -680,7 +678,7 @@ function update_manager_extract_package() {
|
|||
function update_manager_starting_update() {
|
||||
global $config;
|
||||
|
||||
$full_path = $config['attachment_store'] . "/downloads/unix";
|
||||
$full_path = $config['attachment_store'] . "/downloads/";
|
||||
|
||||
$homedir = $config['homedir'];
|
||||
|
||||
|
|
|
@ -1405,6 +1405,8 @@ function install_free_package(package, version, homeurl) {
|
|||
$('#success_pkg').html(dialog_success_pkg_text);
|
||||
$('#success_pkg').dialog('open');
|
||||
|
||||
$("#pkg_version").text(version);
|
||||
|
||||
$("#box_online .loading").hide();
|
||||
$("#box_online .progressbar").hide();
|
||||
$("#box_online .content").html(data['message']);
|
||||
|
|
Loading…
Reference in New Issue