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 /artists.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 'artists.php')
-rw-r--r-- | artists.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/artists.php b/artists.php index a47eb193..743e1ae1 100644 --- a/artists.php +++ b/artists.php @@ -83,7 +83,7 @@ switch($_REQUEST['action']) { show_confirmation ( T_('Renamed artist(s)'), sprintf(T_('%1$s artists have been merged with %2$s'), $count, $artist->name), - conf('web_path') . "/artists.php?action=show&artist=" . $artist->id + Config::get('web_path') . '/artists.php?action=show&artist=' . $artist->id ); } else { $GLOBALS['error']->print_error('general'); @@ -163,7 +163,7 @@ switch($_REQUEST['action']) { show_confirmation ( T_('Renamed artist'), sprintf(T_('%1$s is now known as %2$s'), $artist->name, $newname), - conf('web_path') . "/artists.php?action=show&artist=" . $newid + Config::get('web_path') . "/artists.php?action=show&artist=" . $newid ); } |