diff options
author | friendica <info@friendica.com> | 2012-11-03 14:59:46 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-03 14:59:46 -0700 |
commit | f5b1eee1779e678cd540651bfee73e7126a0c583 (patch) | |
tree | a5f0885d8b4981e5666584e6f896b8e4b4ac07a9 /mod | |
parent | 7915e597ec6c4a8e3735556d59e730aa84f770a1 (diff) | |
download | volse-hubzilla-f5b1eee1779e678cd540651bfee73e7126a0c583.tar.gz volse-hubzilla-f5b1eee1779e678cd540651bfee73e7126a0c583.tar.bz2 volse-hubzilla-f5b1eee1779e678cd540651bfee73e7126a0c583.zip |
mv mod_install to mod_setup, conflict with name of install dir
Diffstat (limited to 'mod')
-rwxr-xr-x | mod/setup.php (renamed from mod/install.php) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mod/install.php b/mod/setup.php index 82c58d467..e6b8e852a 100755 --- a/mod/install.php +++ b/mod/setup.php @@ -3,9 +3,9 @@ $install_wizard_pass=1; -function install_init(&$a){ +function setup_init(&$a){ - // $baseurl/install/testrwrite to test if rewite in .htaccess is working + // $baseurl/setup/testrwrite to test if rewite in .htaccess is working if (argc() ==2 && argv(1)=="testrewrite") { echo "ok"; killme(); @@ -16,7 +16,7 @@ function install_init(&$a){ } -function install_post(&$a) { +function setup_post(&$a) { global $install_wizard_pass, $db; switch($install_wizard_pass) { @@ -113,7 +113,7 @@ function get_db_errno() { return mysql_errno(); } -function install_content(&$a) { +function setup_content(&$a) { global $install_wizard_pass, $db; $o = ''; @@ -439,7 +439,7 @@ function check_htaccess(&$checks) { $status = true; $help = ""; if (function_exists('curl_init')){ - $test = fetch_url($a->get_baseurl()."/install/testrewrite"); + $test = fetch_url($a->get_baseurl()."/setup/testrewrite"); if ($test!="ok") { $status = false; $help = t('Url rewrite in .htaccess is not working. Check your server configuration.'); |