diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-03-21 04:55:26 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2008-03-21 04:55:26 +0000 |
commit | 3c36e58d5441dd5a6990fc24332e69d330edf766 (patch) | |
tree | ad39e85e0e4989adc9b1494bbf538a19b2b753b6 | |
parent | 260b62361e031b3a0d4261e892170f294825ed61 (diff) | |
download | ampache-3c36e58d5441dd5a6990fc24332e69d330edf766.tar.gz ampache-3c36e58d5441dd5a6990fc24332e69d330edf766.tar.bz2 ampache-3c36e58d5441dd5a6990fc24332e69d330edf766.zip |
fixed verify update issue
-rwxr-xr-x | docs/CHANGELOG | 2 | ||||
-rw-r--r-- | lib/class/song.class.php | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/docs/CHANGELOG b/docs/CHANGELOG index 90ae3879..c043fb52 100755 --- a/docs/CHANGELOG +++ b/docs/CHANGELOG @@ -4,6 +4,8 @@ -------------------------------------------------------------------------- v.3.4-Beta3 + - Fixed issue where verify updated all songs in the catalog even + if there was no change - Fixed recently played, only shows distinct songs - Fixed enabling of localplay modules, now correctly enables localplay for the activating user diff --git a/lib/class/song.class.php b/lib/class/song.class.php index 454db4a2..23a3b658 100644 --- a/lib/class/song.class.php +++ b/lib/class/song.class.php @@ -336,6 +336,7 @@ class Song { // Foreach them foreach ($fields as $key=>$value) { + if ($key == 'id') { continue; } // If it's a stringie thing if (in_array($key,$string_array)) { if (trim(stripslashes($song->$key)) != trim(stripslashes($new_song->$key))) { |