Skip to content
Snippets Groups Projects
Commit 967c6d7d authored by Thomas Müller's avatar Thomas Müller
Browse files

allow command line based installation/setup

parent f496a9de
No related branches found
No related tags found
No related merge requests found
...@@ -257,7 +257,7 @@ class OC_Setup { ...@@ -257,7 +257,7 @@ class OC_Setup {
OC_Installer::installShippedApps(); OC_Installer::installShippedApps();
//create htaccess files for apache hosts //create htaccess files for apache hosts
if (strstr($_SERVER['SERVER_SOFTWARE'], 'Apache')) { if (isset($_SERVER['SERVER_SOFTWARE']) && strstr($_SERVER['SERVER_SOFTWARE'], 'Apache')) {
self::createHtaccess(); self::createHtaccess();
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment