summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormomo-i <momo-i@ampache>2008-08-26 00:50:11 +0000
committermomo-i <momo-i@ampache>2008-08-26 00:50:11 +0000
commiteb9e000f3d2fed4b99e3c74916b60ce3ef8d55ff (patch)
tree8e32f49ab0a27d4c3b298a100ab0089d85835970
parent409ece91cc8fa1cb734c4b9754cbe7035cfc6643 (diff)
downloadampache-eb9e000f3d2fed4b99e3c74916b60ce3ef8d55ff.tar.gz
ampache-eb9e000f3d2fed4b99e3c74916b60ce3ef8d55ff.tar.bz2
ampache-eb9e000f3d2fed4b99e3c74916b60ce3ef8d55ff.zip
parse error fixed
-rw-r--r--test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.php b/test.php
index 9c1465c7..a47a8cfa 100644
--- a/test.php
+++ b/test.php
@@ -46,7 +46,7 @@ switch ($_REQUEST['action']) {
$configfile = "$prefix/config/ampache.cfg.php";
// On every load of the config file check and see if it's working now
- if (count(parse_ini_file($configfile)) {
+ if (count(parse_ini_file($configfile))) {
require_once $prefix . '/templates/show_test.inc.php';
break;
}