diff options
author | Friendika <info@friendika.com> | 2010-11-02 22:21:49 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-02 22:21:49 -0700 |
commit | 98a508532f0f3ea35748fa650aa3cad5e929e3de (patch) | |
tree | e65ec844ea7fcb83dfef7f9156ca971b7647c94c /mod/display.php | |
parent | 07b78e9d1cc3785f41a76c2806efb871978927a3 (diff) | |
download | volse-hubzilla-98a508532f0f3ea35748fa650aa3cad5e929e3de.tar.gz volse-hubzilla-98a508532f0f3ea35748fa650aa3cad5e929e3de.tar.bz2 volse-hubzilla-98a508532f0f3ea35748fa650aa3cad5e929e3de.zip |
fix like/dislike refresh on photos/display items
Diffstat (limited to 'mod/display.php')
-rw-r--r-- | mod/display.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mod/display.php b/mod/display.php index 2e35cd6ac..b451d6930 100644 --- a/mod/display.php +++ b/mod/display.php @@ -3,6 +3,8 @@ function display_content(&$a) { + $o = '<div id="live-display"></div>' . "\r\n"; + require_once('mod/profile.php'); profile_init($a); @@ -100,6 +102,7 @@ function display_content(&$a) { ); + $cmnt_tpl = load_view_file('view/comment_item.tpl'); $like_tpl = load_view_file('view/like.tpl'); $tpl = load_view_file('view/wall_item.tpl'); @@ -112,6 +115,13 @@ function display_content(&$a) { if(count($r)) { + if((local_user()) && (local_user() == $a->profile['uid'])) { + q("UPDATE `item` SET `unseen` = 0 + WHERE `parent` = %d AND `unseen` = 1", + intval($r[0]['parent']) + ); + } + foreach($r as $item) { like_puller($a,$item,$alike,'like'); like_puller($a,$item,$dlike,'dislike'); |