]> git.mxchange.org Git - mailer.git/commitdiff
Fixed :(
authorRoland Häder <roland@mxchange.org>
Wed, 26 Dec 2012 18:45:00 +0000 (18:45 +0000)
committerRoland Häder <roland@mxchange.org>
Wed, 26 Dec 2012 18:45:00 +0000 (18:45 +0000)
inc/ajax/ajax_installer.php
js/install-common.js

index a1b7ed8568e1188c8ae168f53021912294d91c83..ecdc4bdebb5ef2d6214a35ab6f0a8000ff9a09bb 100644 (file)
@@ -116,7 +116,7 @@ function doAjaxProcessInstall () {
 // Processes installer request for testing
 function doAjaxInstallerTest () {
        // Load the "test passed" template
-       setAjaxReplyContent(encodeJson(postRequestElement('step').'=OK'));
+       setAjaxReplyContent(loadTemplate('ajax_test_passed', TRUE));
 
        // All okay if we reach this point
        setHttpStatus('200 OK');
@@ -188,7 +188,7 @@ function doAjaxInstallerDoStep () {
        }
 
        // Set dummy content
-       setAjaxReplyContent(loadTemplate('install_step_passed', TRUE, postRequestElement('step')));
+       setAjaxReplyContent(encodeJson(postRequestElement('step').'=OK'));
 
        // All okay if we reach this point
        setHttpStatus('200 OK');
index 2983c6543134cdd8036b6b7f78f8ab90f85af94c..af478d30468f9565d2d5b0dd23b8e7a8855d973e 100644 (file)
@@ -55,8 +55,8 @@ function doFinishInstallation () {
        // Display process window
        displayProcessWindow('install', '');
 
-       // Start installation loop
-       doInstallationLoop();
+       // Start installation loop delayed
+       window.setTimeout("doInstallationLoop()", 500);
 
        // Is success counter same as array size
        if (counterSuccess != installSteps.length) {