Added limit

pull/3096/head
Michael 2017-01-19 10:00:44 +00:00
parent 4e91379f4a
commit 75097ebf37
1 changed files with 9 additions and 8 deletions

View File

@ -762,24 +762,25 @@ function network_content(App $a, $update = 0) {
// on they just get buried deeper. It has happened to me a couple of times also.
if((! $group) && (! $cid) && (! $star)) {
if (!$group && !$cid && !$star) {
$unseen = q("SELECT `id` FROM `item` WHERE `unseen` AND `uid` = %d",
$unseen = q("SELECT `id` FROM `item` WHERE `unseen` AND `uid` = %d LIMIT 1",
intval(local_user()));
if ($unseen)
if (dbm::is_result($unseen)) {
$r = q("UPDATE `item` SET `unseen` = 0
WHERE `unseen` = 1 AND `uid` = %d",
intval(local_user())
);
}
else {
if($update_unseen) {
}
} else {
if ($update_unseen) {
$unseen = q("SELECT `id` FROM `item` ".$update_unseen);
$unseen = q("SELECT `id` FROM `item` ".$update_unseen. " LIMIT 1");
if ($unseen)
if (dbm::is_result($unseen)) {
$r = q("UPDATE `item` SET `unseen` = 0 $update_unseen");
}
}
}