summaryrefslogtreecommitdiffstats
path: root/ajax/setallitemsread.php
diff options
context:
space:
mode:
Diffstat (limited to 'ajax/setallitemsread.php')
-rw-r--r--ajax/setallitemsread.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/ajax/setallitemsread.php b/ajax/setallitemsread.php
index 5355ead06..ba084299d 100644
--- a/ajax/setallitemsread.php
+++ b/ajax/setallitemsread.php
@@ -40,12 +40,12 @@ switch ($feedId) {
// FeedMapper instead of iterating through every item and updating as
// necessary
$success = false;
-if($mostRecentItemId !== 0){
+if($mostRecentItemId !== 0) {
$mostRecentItem = $itemMapper->find($mostRecentItemId);
}
-foreach($items as $item){
+foreach($items as $item) {
// FIXME: this should compare the modified date
- if($mostRecentItemId === 0 || $item->getDate() <= $mostRecentItem->getDate()){
+ if($mostRecentItemId === 0 || $item->getDate() <= $mostRecentItem->getDate()) {
$item->setRead();
$success = $itemMapper->update($item);
}