From 88eee18b3db5cc7eac9d029c74383739a8868016 Mon Sep 17 00:00:00 2001 From: Fahad Abbas Date: Tue, 2 Feb 2016 14:00:58 +0000 Subject: [PATCH] modified : logged in user playlist fixed --- upload/manage_playlists.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upload/manage_playlists.php b/upload/manage_playlists.php index c9d2e5dc..dd315347 100644 --- a/upload/manage_playlists.php +++ b/upload/manage_playlists.php @@ -73,7 +73,7 @@ switch($mode) assign('mode','manage_playlist'); //Getting List of available playlists - $playlists = $cbvid->action->get_playlists( array( 'order' => 'playlists.date_added DESC' ) ); + $playlists = $cbvid->action->get_playlists( array('user'=>userid(), 'order' => 'playlists.date_added DESC' ) ); assign('playlists',$playlists); }