aboutsummaryrefslogtreecommitdiffstats
path: root/mod/home.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-03-22 12:55:13 -0700
committerfriendica <info@friendica.com>2015-03-22 12:55:13 -0700
commit6631540d20068d3c4ee221518e8f430507662e27 (patch)
tree4a8430ae2063d1e9397cce6315dd5b3fa691366a /mod/home.php
parent1b17b0193ec08936b5485216ba6bbe9a46ede187 (diff)
downloadvolse-hubzilla-6631540d20068d3c4ee221518e8f430507662e27.tar.gz
volse-hubzilla-6631540d20068d3c4ee221518e8f430507662e27.tar.bz2
volse-hubzilla-6631540d20068d3c4ee221518e8f430507662e27.zip
provide visual feedback when deleting a like by liking it again.
Diffstat (limited to 'mod/home.php')
-rw-r--r--mod/home.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/home.php b/mod/home.php
index c449a0561..9b2cc0e6d 100644
--- a/mod/home.php
+++ b/mod/home.php
@@ -185,7 +185,7 @@ function home_content(&$a, $update = 0, $load = false) {
$simple_update = (($update) ? " and item.item_unseen = 1 " : '');
if($update && $_SESSION['loadtime'])
- $simple_update .= " and item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' ";
+ $simple_update = " AND ( item_unseen = 1 or item.changed > '" . datetime_convert('UTC','UTC',$_SESSION['loadtime']) . "' ) ";
if($load)
$simple_update = '';
@@ -221,6 +221,7 @@ function home_content(&$a, $update = 0, $load = false) {
$sql_extra3 $sql_extra $sql_nets",
intval(ABOOK_FLAG_BLOCKED)
);
+ $_SESSION['loadtime'] = datetime_convert();
}
// Then fetch all the children of the parents that are on this page
$parents_str = '';