diff options
author | spocky <spocky@ampache> | 2007-10-24 21:15:58 +0000 |
---|---|---|
committer | spocky <spocky@ampache> | 2007-10-24 21:15:58 +0000 |
commit | e855988af2850d8d8105b56bc0ce9eae8b7d9dc0 (patch) | |
tree | 9e05a256144165aca01e6bfe9a02bd2d81dbdfb4 /install.php | |
parent | 06a5efcc717cd28ea69bd75f11063c51ee455b82 (diff) | |
download | ampache-e855988af2850d8d8105b56bc0ce9eae8b7d9dc0.tar.gz ampache-e855988af2850d8d8105b56bc0ce9eae8b7d9dc0.tar.bz2 ampache-e855988af2850d8d8105b56bc0ce9eae8b7d9dc0.zip |
renamed a few files (missing php extension)
updated most of the tables so that every column is independently customizable by css rules
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/install.php b/install.php index b9abd5fb..7ba78652 100644 --- a/install.php +++ b/install.php @@ -68,7 +68,7 @@ $php_self = $http_type . $_SERVER['HTTP_HOST'] . "/" . preg_replace("/^\/(.+\.ph switch ($_REQUEST['action']) { case 'create_db': if (!install_insert_db($username,$password,$hostname,$database)) { - require_once 'templates/show_install.inc'; + require_once 'templates/show_install.inc.php'; break; } @@ -82,7 +82,7 @@ switch ($_REQUEST['action']) { case 'create_config': $created_config = install_create_config($web_path,$username,$password,$hostname,$database); - require_once 'templates/show_install_config.inc'; + require_once 'templates/show_install_config.inc.php'; break; case 'show_create_config': @@ -116,7 +116,7 @@ switch ($_REQUEST['action']) { load_gettext(); header ("Content-Type: text/html; charset=" . Config::get('site_charset')); - require_once 'templates/show_install_config.inc'; + require_once 'templates/show_install_config.inc.php'; break; case 'create_account': @@ -141,7 +141,7 @@ switch ($_REQUEST['action']) { /* Make sure we've got a valid config file */ if (!check_config_values($results)) { - require_once Config::get('prefix') . '/templates/show_install_config.inc'; + require_once Config::get('prefix') . '/templates/show_install_config.inc.php'; break; } @@ -201,7 +201,7 @@ switch ($_REQUEST['action']) { // Page ready :) header ("Content-Type: text/html; charset=$charset"); - require_once 'templates/show_install.inc'; + require_once 'templates/show_install.inc.php'; break; default: /* Do some basic tests here... most common error, no mysql */ |