Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Sack <kde@jakobsack.de>2011-05-07 00:50:18 +0400
committerJakob Sack <kde@jakobsack.de>2011-05-07 00:50:18 +0400
commit6b83e5ccfe31a947b758eabadb9865ad898dbbef (patch)
tree92857184124b68daef306b0a10103ec5dc919515 /index.php
parente8e0608991eddac9a9595abc408f6f3c6fdf05b8 (diff)
renamed installer.php to setup.php
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 6815aa43dcc..0fafdc45d22 100644
--- a/index.php
+++ b/index.php
@@ -33,7 +33,7 @@ $errors=OC_UTIL::checkServer();
if(count($errors)>0){
OC_TEMPLATE::printGuestPage( "", "error", array( "errors" => $errors ));
}elseif(isset($_POST['install']) and $_POST['install']=='true'){
- require_once 'installer.php';
+ require_once 'setup.php';
}elseif (!OC_CONFIG::getValue('installed',false)) {
$hasSQLite=is_callable('sqlite_open');
$hasMySQL=is_callable('mysql_connect');