]> git.mxchange.org Git - friendica.git/blobdiff - mod/install.php
Merge pull request #2190 from annando/1512-getload
[friendica.git] / mod / install.php
index e30c30689308ae4e9c41c39154b24376c621e481..8434b38e387f21e7953bc68b9c2163750284cd34 100755 (executable)
@@ -11,6 +11,14 @@ function install_init(&$a){
                echo "ok";
                killme();
        }
+       
+       // We overwrite current theme css, because during install we could not have a working mod_rewrite
+       // so we could not have a css at all. Here we set a static css file for the install procedure pages
+       $a->config['system']['theme'] = "../install";
+       $a->theme['stylesheet'] = $a->get_baseurl()."/view/install/style.css";
+       
+       
+       
        global $install_wizard_pass;
        if (x($_POST,'pass'))
                $install_wizard_pass = intval($_POST['pass']);