diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-05-25 05:49:22 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-05-25 05:49:22 +0000 |
commit | 79316acb81fe9215b09ec41918b9a402560e7bef (patch) | |
tree | 9a71adc5d6dd297e3f39976796e380be10f19a4e /lib/ui.lib.php | |
parent | 035b273ff529a34e1d2cb52bd61c653c6bff8250 (diff) | |
download | ampache-79316acb81fe9215b09ec41918b9a402560e7bef.tar.gz ampache-79316acb81fe9215b09ec41918b9a402560e7bef.tar.bz2 ampache-79316acb81fe9215b09ec41918b9a402560e7bef.zip |
fixed find album art, including a fix from Karl Hungus... seriously I am not making that name up
Diffstat (limited to 'lib/ui.lib.php')
-rw-r--r-- | lib/ui.lib.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ui.lib.php b/lib/ui.lib.php index 3a7d3f7e..46642fbe 100644 --- a/lib/ui.lib.php +++ b/lib/ui.lib.php @@ -38,14 +38,14 @@ */ function show_confirmation($title,$text,$next_url,$cancel=0) { - if (substr_count($next_url,conf('web_path'))) { + if (substr_count($next_url,Config::get('web_path'))) { $path = $next_url; } else { - $path = conf('web_path') . "/$next_url"; + $path = Config::get('web_path') . "/$next_url"; } - require (conf('prefix') . "/templates/show_confirmation.inc.php"); + require Config::get('prefix') . '/templates/show_confirmation.inc.php'; } // show_confirmation |