@@ -116,13 +116,13 @@ |
||
116 | 116 | $countOfJobQueue = 0; |
117 | 117 | |
118 | 118 | // Count of flagged comments: |
119 | - if($this->barrierTest(RoleConfiguration::MAIN, $currentUser, PageListFlaggedComments::class)) { |
|
119 | + if ($this->barrierTest(RoleConfiguration::MAIN, $currentUser, PageListFlaggedComments::class)) { |
|
120 | 120 | // We want all flagged comments that haven't been acknowledged if we can visit the page. |
121 | 121 | $countOfFlagged = sizeof(Comment::getFlaggedComments($database)); |
122 | 122 | } |
123 | 123 | |
124 | 124 | // Count of failed job queue changes: |
125 | - if($this->barrierTest(RoleConfiguration::MAIN, $currentUser, PageJobQueue::class)) { |
|
125 | + if ($this->barrierTest(RoleConfiguration::MAIN, $currentUser, PageJobQueue::class)) { |
|
126 | 126 | // We want all failed jobs that haven't been acknowledged if we can visit the page. |
127 | 127 | JobQueueSearchHelper::get($database) |
128 | 128 | ->statusIn([JobQueue::STATUS_FAILED]) |
@@ -109,7 +109,8 @@ |
||
109 | 109 | * |
110 | 110 | * @return void |
111 | 111 | */ |
112 | - public function setUpNavBarBadges($currentUser, $database) { |
|
112 | + public function setUpNavBarBadges($currentUser, $database) |
|
113 | + { |
|
113 | 114 | // Set up some variables. |
114 | 115 | // A size of 0 causes nothing to show up on the page (checked on navigation-menu.tpl) so leaving it 0 here is fine. |
115 | 116 | $countOfFlagged = 0; |