@@ -24,10 +24,10 @@ discard block |
||
| 24 | 24 | /** @var Connection $connection */ |
| 25 | 25 | $connection = AppKernel::Container()->get(Connection::class); |
| 26 | 26 | |
| 27 | -$id = (int) isset($_REQUEST['id']) ? $_REQUEST['id'] : 0; |
|
| 28 | -$rId = (int) isset($_REQUEST['rid']) ? $_REQUEST['rid'] : 0; |
|
| 29 | -$cacheId = (int) isset($_REQUEST['cacheid']) ? $_REQUEST['cacheid'] : 0; |
|
| 30 | -$ownerId = (int) isset($_REQUEST['ownerid']) ? $_REQUEST['ownerid'] : 0; |
|
| 27 | +$id = (int)isset($_REQUEST['id']) ? $_REQUEST['id'] : 0; |
|
| 28 | +$rId = (int)isset($_REQUEST['rid']) ? $_REQUEST['rid'] : 0; |
|
| 29 | +$cacheId = (int)isset($_REQUEST['cacheid']) ? $_REQUEST['cacheid'] : 0; |
|
| 30 | +$ownerId = (int)isset($_REQUEST['ownerid']) ? $_REQUEST['ownerid'] : 0; |
|
| 31 | 31 | |
| 32 | 32 | $reportData = $connection |
| 33 | 33 | ->fetchAssoc( |
@@ -37,8 +37,8 @@ discard block |
||
| 37 | 37 | ['id' => $rId] |
| 38 | 38 | ); |
| 39 | 39 | |
| 40 | -$reporterId = (int) $reportData['userid']; |
|
| 41 | -$adminId = (int) $reportData['adminid']; |
|
| 40 | +$reporterId = (int)$reportData['userid']; |
|
| 41 | +$adminId = (int)$reportData['adminid']; |
|
| 42 | 42 | $age = $reportData['age']; |
| 43 | 43 | |
| 44 | 44 | if (isset($_REQUEST['savecomment'])) { |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | ORDER BY username' |
| 32 | 32 | ); |
| 33 | 33 | |
| 34 | -foreach($admins as &$admin) { |
|
| 34 | +foreach ($admins as &$admin) { |
|
| 35 | 35 | $rights = []; |
| 36 | 36 | |
| 37 | 37 | if ($admin['admin'] & ADMIN_TRANSLATE) { |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | ); |
| 38 | 38 | if ($r) { |
| 39 | 39 | if ($r['object_type'] == 1) { |
| 40 | - $check = (int) $connection |
|
| 40 | + $check = (int)$connection |
|
| 41 | 41 | ->fetchColumn( |
| 42 | 42 | 'SELECT COUNT(*) |
| 43 | 43 | FROM `cache_logs` |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | |
| 63 | 63 | } |
| 64 | 64 | } elseif ($r['object_type'] == 2) { |
| 65 | - $check = (int) $connection |
|
| 65 | + $check = (int)$connection |
|
| 66 | 66 | ->fetchColumn( |
| 67 | 67 | 'SELECT COUNT(*) |
| 68 | 68 | FROM `caches` |
@@ -142,22 +142,22 @@ |
||
| 142 | 142 | |
| 143 | 143 | $tpl->assign('showdetails', true); |
| 144 | 144 | |
| 145 | - $r['hidden'] = (int) $connection->fetchColumn( |
|
| 145 | + $r['hidden'] = (int)$connection->fetchColumn( |
|
| 146 | 146 | 'SELECT COUNT(*) FROM `caches` WHERE `user_id`=:userId', [':userId' => $r['user_id']] |
| 147 | 147 | ); |
| 148 | - $r['hidden_active'] = (int) $connection->fetchColumn( |
|
| 148 | + $r['hidden_active'] = (int)$connection->fetchColumn( |
|
| 149 | 149 | 'SELECT COUNT(*) FROM `caches` WHERE `user_id`= :userId AND `status`=1', |
| 150 | 150 | [':userId' => $r['user_id']] |
| 151 | 151 | ); |
| 152 | - $r['logentries'] = (int) $connection->fetchColumn( |
|
| 152 | + $r['logentries'] = (int)$connection->fetchColumn( |
|
| 153 | 153 | 'SELECT COUNT(*) FROM `cache_logs` WHERE `user_id`= :userId', |
| 154 | 154 | [':userId' => $r['user_id']] |
| 155 | 155 | ); |
| 156 | - $r['deleted_logentries'] = (int) $connection->fetchColumn( |
|
| 156 | + $r['deleted_logentries'] = (int)$connection->fetchColumn( |
|
| 157 | 157 | 'SELECT COUNT(*) FROM `cache_logs_archived` WHERE `user_id`= :userId', |
| 158 | 158 | [':userId' => $r['user_id']] |
| 159 | 159 | ); |
| 160 | - $r['reports'] = (int) $connection->fetchColumn( |
|
| 160 | + $r['reports'] = (int)$connection->fetchColumn( |
|
| 161 | 161 | 'SELECT COUNT(*) FROM `cache_reports` WHERE `userid`= :userId', |
| 162 | 162 | [':userId' => $r['user_id']] |
| 163 | 163 | ); |
@@ -121,7 +121,7 @@ |
||
| 121 | 121 | // user.last_login gives the overall last login date, including OKAPI logins. |
| 122 | 122 | |
| 123 | 123 | if ($rUser = sql_fetch_assoc($rs)) { |
| 124 | - if ((($this->permanent == true) && (strtotime($rUser['last_login']) + LOGIN_TIME_PERMANENT / 2 < time())) || |
|
| 124 | + if ((($this->permanent == true) && (strtotime($rUser['last_login']) + LOGIN_TIME_PERMANENT / 2 < time())) || |
|
| 125 | 125 | (($this->permanent == false) && (strtotime($rUser['last_login']) + LOGIN_TIME / 2 < time())) |
| 126 | 126 | ) { |
| 127 | 127 | sql( |
@@ -218,10 +218,10 @@ |
||
| 218 | 218 | $entity->nativeName = $data['native_name']; |
| 219 | 219 | $entity->de = $data['de']; |
| 220 | 220 | $entity->en = $data['en']; |
| 221 | - $entity->translationId = (int) $data['trans_id']; |
|
| 222 | - $entity->listDefaultDe = (bool) $data['list_default_de']; |
|
| 223 | - $entity->listDefaultEn = (bool) $data['list_default_en']; |
|
| 224 | - $entity->isTranslated = (bool) $data['is_translated']; |
|
| 221 | + $entity->translationId = (int)$data['trans_id']; |
|
| 222 | + $entity->listDefaultDe = (bool)$data['list_default_de']; |
|
| 223 | + $entity->listDefaultEn = (bool)$data['list_default_en']; |
|
| 224 | + $entity->isTranslated = (bool)$data['is_translated']; |
|
| 225 | 225 | |
| 226 | 226 | return $entity; |
| 227 | 227 | } |
@@ -181,9 +181,9 @@ |
||
| 181 | 181 | $entity->name = $data['name']; |
| 182 | 182 | $entity->de = $data['de']; |
| 183 | 183 | $entity->en = $data['en']; |
| 184 | - $entity->translationId = (int) $data['trans_id']; |
|
| 185 | - $entity->listDefaultDe = (bool) $data['list_default_de']; |
|
| 186 | - $entity->listDefaultEn = (bool) $data['list_default_en']; |
|
| 184 | + $entity->translationId = (int)$data['trans_id']; |
|
| 185 | + $entity->listDefaultDe = (bool)$data['list_default_de']; |
|
| 186 | + $entity->listDefaultEn = (bool)$data['list_default_en']; |
|
| 187 | 187 | $entity->sortDe = $data['sort_de']; |
| 188 | 188 | $entity->sortEn = $data['sort_en']; |
| 189 | 189 | |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | */ |
| 27 | 27 | public static function fromEMail($email) |
| 28 | 28 | { |
| 29 | - $userId = (int) sql_value("SELECT `user_id` FROM `user` WHERE `email`='&1'", 0, $email); |
|
| 29 | + $userId = (int)sql_value("SELECT `user_id` FROM `user` WHERE `email`='&1'", 0, $email); |
|
| 30 | 30 | if ($userId === 0) { |
| 31 | 31 | return null; |
| 32 | 32 | } |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | */ |
| 42 | 42 | public static function fromUsername($username) |
| 43 | 43 | { |
| 44 | - $userId = (int) sql_value("SELECT `user_id` FROM `user` WHERE `username`='&1'", 0, $username); |
|
| 44 | + $userId = (int)sql_value("SELECT `user_id` FROM `user` WHERE `username`='&1'", 0, $username); |
|
| 45 | 45 | if ($userId === 0) { |
| 46 | 46 | return null; |
| 47 | 47 | } |
@@ -28,14 +28,14 @@ |
||
| 28 | 28 | [':wp' => $_REQUEST['wp']] |
| 29 | 29 | ); |
| 30 | 30 | } else { |
| 31 | - $cacheId = isset($_REQUEST['cacheid']) ? (int) $_REQUEST['cacheid'] : -1; |
|
| 31 | + $cacheId = isset($_REQUEST['cacheid']) ? (int)$_REQUEST['cacheid'] : -1; |
|
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | $showHistory = false; |
| 35 | 35 | $error = ''; |
| 36 | 36 | |
| 37 | 37 | if ($cacheId >= 0 && |
| 38 | - $connection->fetchColumn('SELECT COUNT(*) FROM `caches` WHERE `cache_id`=:id',[':id' => $cacheId]) <> 1) |
|
| 38 | + $connection->fetchColumn('SELECT COUNT(*) FROM `caches` WHERE `cache_id`=:id', [':id' => $cacheId]) <> 1) |
|
| 39 | 39 | { |
| 40 | 40 | $error = $translate->t('Cache not found', '', '', 0); |
| 41 | 41 | } elseif ($cacheId > 0) { |