diff options
author | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-25 19:29:14 -0500 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2013-01-25 19:29:14 -0500 |
commit | 8808fdf10d9e7fdab04b512b3d9f7d4f24ed4449 (patch) | |
tree | 00d9e03391275e2dc188a394c65b22fb233f8f82 /search.php | |
parent | 0c66442b559a350527aa35155ec965a2901cafbc (diff) | |
download | ampache-8808fdf10d9e7fdab04b512b3d9f7d4f24ed4449.tar.gz ampache-8808fdf10d9e7fdab04b512b3d9f7d4f24ed4449.tar.bz2 ampache-8808fdf10d9e7fdab04b512b3d9f7d4f24ed4449.zip |
conf() -> Config::get()
I have a feeling a lot of these are in stale, unused code, but there
might be some actual bugs here. conf() was replaced a while back.
Diffstat (limited to 'search.php')
-rw-r--r-- | search.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ switch ($_REQUEST['action']) { case 'save_as_track': $playlist_id = save_search($_REQUEST); $playlist = new Playlist($playlist_id); - show_confirmation(T_('Search Saved'),sprintf(T_('Your Search has been saved as a track in %s'), $playlist->name),conf('web_path') . "/search.php"); + show_confirmation(T_('Search Saved'),sprintf(T_('Your Search has been saved as a track in %s'), $playlist->name), Config::get('web_path') . "/search.php"); break; case 'save_as_smartplaylist': $playlist = new Search(); |