revert back to get the mid from enotify - otherwise we can not distinct between posts and likes
This commit is contained in:
		| @@ -803,6 +803,7 @@ class Enotify { | ||||
| 			'photo' => $item['author']['xchan_photo_s'], | ||||
| 			'when' => relative_date($item['created']),  | ||||
| 			'class' => (intval($item['item_unseen']) ? 'notify-unseen' : 'notify-seen'), | ||||
| 			'b64mid' => ((in_array($item['verb'], [ACTIVITY_LIKE, ACTIVITY_DISLIKE])) ? 'b64.' . base64url_encode($item['thr_parent']) : 'b64.' . base64url_encode($item['mid'])), | ||||
| 			'message' => strip_tags(bbcode($itemem_text)) | ||||
| 		); | ||||
|  | ||||
|   | ||||
| @@ -959,9 +959,9 @@ function notify_popup_loader(notifyType) { | ||||
| 		$("." + notifyType + "-update").html(data.notify.length); | ||||
|  | ||||
| 		$(data.notify).each(function() { | ||||
| 			html = navbar_notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass); | ||||
| 			html = navbar_notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass,this.b64mid); | ||||
| 			$("#navbar-" + notifyType + "-menu").append(html); | ||||
| 			html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass); | ||||
| 			html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass,this.b64mid); | ||||
| 			$("#nav-" + notifyType + "-menu").append(html); | ||||
| 		}); | ||||
|  | ||||
|   | ||||
| @@ -29,16 +29,16 @@ | ||||
| {{if $module == 'display'}} | ||||
| <script> | ||||
| 	$(document).on('click', '.notification', function(e) { | ||||
| 		var mid = $(this)[0].pathname.substr(9); | ||||
| 		var b64mid = $(this).data('b64mid'); | ||||
| 		var path = $(this)[0].pathname.substr(1,7); | ||||
|  | ||||
| 		if(path === 'display' && mid) { | ||||
| 		if(path === 'display' && b64mid) { | ||||
| 			e.preventDefault(); | ||||
| 			e.stopPropagation(); | ||||
|  | ||||
| 			$('.thread-wrapper').remove(); | ||||
| 			$(this).fadeOut(); | ||||
| 			bParam_mid = mid; | ||||
| 			bParam_mid = b64mid; | ||||
| 			mode = 'replace'; | ||||
| 			page_load = true; | ||||
| 			liveUpdate(); | ||||
| @@ -54,7 +54,7 @@ | ||||
| <div id="notifications_wrapper"> | ||||
| 	<div id="notifications" class="navbar-nav" data-children=".nav-item"> | ||||
| 		<div id="nav-notifications-template" rel="template"> | ||||
| 			<a class="list-group-item clearfix notification {5}" href="{0}" title="{2} {3}"> | ||||
| 			<a class="list-group-item clearfix notification {5}" href="{0}" title="{2} {3}" data-b64mid="{6}"> | ||||
| 				<img class="menu-img-3" data-src="{1}"> | ||||
| 				<span class="contactname">{2}</span> | ||||
| 				<span class="dropdown-sub-text">{3}<br>{4}</span> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user