• Welcome to PHPVIBE Forums. Please log in.

Hearted - select all then click Remove-selected, not working

Started by spirog,

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

spirogTopic starter

Hearted - select all then click Remove-selected, not working
if you click remove right of each one, one by one removed from hearted.. see photo

Spiro
  •  

Marius P.

Nice find!

in tpl/manager.php

before
$count = $db->get_row("Select count(*) as nr from ".DB_PREFIX."images where ".DB_PREFIX."images.id in ( select vid from ".DB_PREFIX."hearts where uid ='".user_id()."' and type='like')"); $images = $db->get_results("select id,title,thumb, views, liked from ".DB_PREFIX."images where ".DB_PREFIX."images.id in ( select vid from ".DB_PREFIX."hearts where uid ='".user_id()."' and type='like') ORDER BY ".DB_PREFIX."images.id DESC ".this_limit().""); ?>

add

if(isset($_POST['heartsRow'])) {
foreach ($_POST['heartsRow'] as $del) {
$id = intval($del); $db->query("Delete from ".DB_PREFIX."hearts where uid ='".user_id()."' and vid='".$id."' ");   
}
echo '<div class="msg-info mleft20 mright20 mtop20">'._lang("Pictures unliked.").'<>';
}


Or just apply the patch when I upload it.
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

 

Similar topics (7)

[ Video Sharing CMS v4 ] upload of video and mp3 not working

Started by gen2solo


Replies: 2
Views: 2164

[ Video Sharing CMS v4 ] Shows Homepage when click on any video or page

Started by ownbond


Replies: 2
Views: 1198

[ Video Sharing CMS v4 ] Xclub plugin not working (videos not working)

Started by shtefcs


Replies: 16
Views: 7103

Share button not working in smartphone

Started by HPR


Replies: 3
Views: 25045

[ Video Sharing CMS v4 ] Language translation is not working. Error 404

Started by hamzat


Replies: 1
Views: 2086

[ Video Sharing CMS v4 ] Youtube importer by User not working

Started by prat


Replies: 2
Views: 2112

[ Video Sharing CMS v4 ] Search by tags not working

Started by x5000x


Replies: 10
Views: 2506