diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-02-08 21:51:55 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-02-08 21:51:55 +0000 |
commit | 9d358f2017af00a102ab395d45be777e86dcad48 (patch) | |
tree | ef7bbde6e0796833f7578d4cb7779d8fccf88852 | |
parent | 5343c30ff528ca886cd9a581d30cd9c6bfe9d2e4 (diff) | |
download | ampache-9d358f2017af00a102ab395d45be777e86dcad48.tar.gz ampache-9d358f2017af00a102ab395d45be777e86dcad48.tar.bz2 ampache-9d358f2017af00a102ab395d45be777e86dcad48.zip |
fixed test so it reads the config file correctly for the web_path image test
-rw-r--r-- | templates/show_test.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_test.inc b/templates/show_test.inc index e1f08610..fe0d3220 100644 --- a/templates/show_test.inc +++ b/templates/show_test.inc @@ -244,9 +244,9 @@ $row_classes = array('even','odd'); else { $http_type = "http://"; } - $results['conf']['web_path'] = $http_type . $_SERVER['SERVER_NAME'] . ":" . $_SERVER['SERVER_PORT'] . $results['conf']['web_path']; + $results['web_path'] = $http_type . $_SERVER['SERVER_NAME'] . ":" . $_SERVER['SERVER_PORT'] . $results['web_path']; if ($status['parse_config']) { - echo "<img src=\"" . $results['conf']['web_path'] ."/images/ampache.gif\" width=\"80\" height=\"15\"/>"; + echo "<img src=\"" . $results['web_path'] ."/images/ampache.gif\" width=\"80\" height=\"15\"/>"; } else { $status['check_webpath'] = false; |