diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-14 18:16:28 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-14 18:16:28 +0000 |
commit | 4d7170217da3a9361d2f7ebb135dea77d5372870 (patch) | |
tree | d453c7fcdf287c52a7a7bde70625879af8696707 /playlist.php | |
parent | 134e6a164e8d9988f1573458aeb9046b192b0378 (diff) | |
download | ampache-4d7170217da3a9361d2f7ebb135dea77d5372870.tar.gz ampache-4d7170217da3a9361d2f7ebb135dea77d5372870.tar.bz2 ampache-4d7170217da3a9361d2f7ebb135dea77d5372870.zip |
fixed the seeking bug and a few other minor ones thank Sven F.
Diffstat (limited to 'playlist.php')
-rw-r--r-- | playlist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playlist.php b/playlist.php index 5537867e..dbe46757 100644 --- a/playlist.php +++ b/playlist.php @@ -120,7 +120,7 @@ switch ($action) { case 'remove_song': case _('Remote Selected Tracks'): /* Check em for rights */ - if (!$playlist->has_access) { + if (!$playlist->has_access()) { access_denied(); break; } |