Search user's videos must be Show all videos from user
in video view
the serach thing was not working and brings me every time the error that the user not exist or has no access
in /conroler/youtubegallery.php search for this line
Code: Select all
'U_USER_VIDEOS' => $this->helper->route('dmzx_youtubegallery_controller', array('mode' => 'user_videos' , 'user_id' => $this->user->data['user_id'])),
and replace with this one
Code: Select all
'U_USER_VIDEOS' => $this->helper->route('dmzx_youtubegallery_controller', array('mode' => 'user_videos' , 'user_id' => $row['user_id'] , 'username' => $row['username'])),
now i need some help
on the search site where it is " Search user’s videos " i will show the username after that.
Code: Select all
<h2>{L_USER_VIDEOS} <?php echo $_GET["username"]; ?></h2>
who can help on this ?