diff options
author | dipsol <dipsol@ampache> | 2009-11-04 14:32:43 +0000 |
---|---|---|
committer | dipsol <dipsol@ampache> | 2009-11-04 14:32:43 +0000 |
commit | 70e99db5b6ea7d5ef9c4d859dc25d4badda15fec (patch) | |
tree | 35814b00dbf3237fb09ef53383842c5c0742ae6b /lib/install.php | |
parent | c717912676a037aa00a1636d19db24272ff70fcc (diff) | |
download | ampache-70e99db5b6ea7d5ef9c4d859dc25d4badda15fec.tar.gz ampache-70e99db5b6ea7d5ef9c4d859dc25d4badda15fec.tar.bz2 ampache-70e99db5b6ea7d5ef9c4d859dc25d4badda15fec.zip |
Fixed a little bug :S
Diffstat (limited to 'lib/install.php')
-rw-r--r-- | lib/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/install.php b/lib/install.php index a2f909ac..2da83687 100644 --- a/lib/install.php +++ b/lib/install.php @@ -67,7 +67,7 @@ function install_check_status($configfile) { to install ampache. */ if (!file_exists($configfile)) { - return false; + return true; } else { Error::add('general',_('Config file already exists, install is probably completed')); } |