fix photo comments: use $drop array as in wall_thread and search_item

This commit is contained in:
Fabrixxm 2014-04-28 09:29:48 -04:00
commit aba27ad404
3 changed files with 17 additions and 14 deletions

View file

@ -1640,10 +1640,15 @@ function photos_content(&$a) {
$profile_link = $profile_url;
$drop = '';
if(($item['contact-id'] == $contact_id) || ($item['uid'] == local_user()))
$drop = replace_macros(get_markup_template('photo_drop.tpl'), array('$id' => $item['id'], '$delete' => t('Delete')));
$dropping = (($item['contact-id'] == $contact_id) || ($item['uid'] == local_user()));
$drop = array(
'dropping' => $dropping,
'pagedrop' => false,
'select' => t('Select'),
'delete' => t('Delete'),
);
if($a->theme['template_engine'] === 'internal') {