diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-06-02 01:42:55 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2009-06-02 01:42:55 +0000 |
commit | 94f5610ef6c66dc094372e76df9a6d8783e9bc7f (patch) | |
tree | 90b9f2c265c29f50cd0e5a366b8a3cd90ee78593 /lib/class/artist.class.php | |
parent | 778fe71fed0de15b7cda3efcf30d90739ec46c78 (diff) | |
download | ampache-94f5610ef6c66dc094372e76df9a6d8783e9bc7f.tar.gz ampache-94f5610ef6c66dc094372e76df9a6d8783e9bc7f.tar.bz2 ampache-94f5610ef6c66dc094372e76df9a6d8783e9bc7f.zip |
add MBID support Thx flowerysong
Diffstat (limited to 'lib/class/artist.class.php')
-rw-r--r-- | lib/class/artist.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/class/artist.class.php b/lib/class/artist.class.php index 0db622b3..c2c80a61 100644 --- a/lib/class/artist.class.php +++ b/lib/class/artist.class.php @@ -258,7 +258,7 @@ class Artist extends database_object { // Save our current ID $current_id = $this->id; - $artist_id = Catalog::check_artist($data['name']); + $artist_id = Catalog::check_artist($data['name'], $this->mbid); // If it's changed we need to update if ($artist_id != $this->id) { |