@@ -1770,7 +1770,9 @@ |
||
1770 | 1770 | $post_item_id |
1771 | 1771 | ); |
1772 | 1772 | foreach ($rows as $record) { |
1773 | - if ($record['raison'] === NULL) continue; |
|
1773 | + if ($record['raison'] === NULL) { |
|
1774 | + continue; |
|
1775 | + } |
|
1774 | 1776 | $reason = explode(':', $record['raison']); |
1775 | 1777 | if (count($reason) > 0) { |
1776 | 1778 | $sentence = date($SETTINGS['date_format'] . ' ' . $SETTINGS['time_format'], (int) $record['date']) . ' - ' |
@@ -1861,7 +1861,9 @@ |
||
1861 | 1861 | $record['id'], |
1862 | 1862 | $_SESSION['user_id'] |
1863 | 1863 | ); |
1864 | - if (count($currentUserKey) === 0) continue; |
|
1864 | + if (count($currentUserKey) === 0) { |
|
1865 | + continue; |
|
1866 | + } |
|
1865 | 1867 | |
1866 | 1868 | // Decrypt itemkey with admin key |
1867 | 1869 | $itemKey = decryptUserObjectKey($currentUserKey['share_key'], $_SESSION['user']['private_key']); |