@@ -357,7 +357,7 @@ discard block |
||
357 | 357 | // return array(); |
358 | 358 | // Logic Error - log types are still valid when no NEW logs are allowed for the cache. |
359 | 359 | // (Would e.g. block admin logs and log-type restoring for locked caches.) |
360 | - return get_cache_log_types($this->getCacheId(), $this->getType()); // depends on userid |
|
360 | + return get_cache_log_types($this->getCacheId(), $this->getType()); // depends on userid |
|
361 | 361 | } |
362 | 362 | |
363 | 363 | public static function isDuplicate($cacheId, $userId, $logType, $logDate, $logText) |
@@ -443,8 +443,8 @@ discard block |
||
443 | 443 | if ($dateOk && $submit) { |
444 | 444 | $dateOk = ( |
445 | 445 | mktime( |
446 | - (int) $hour, |
|
447 | - (int) $minute, |
|
446 | + (int)$hour, |
|
447 | + (int)$minute, |
|
448 | 448 | 0, |
449 | 449 | $month, |
450 | 450 | $day, |
@@ -49,8 +49,8 @@ discard block |
||
49 | 49 | $fieldNoteService = AppKernel::Container()->get(FieldNoteService::class); |
50 | 50 | |
51 | 51 | $fieldNote = $fieldNoteService->fetchOneBy([ |
52 | - 'id' => (int) $_GET['fieldnoteid'], |
|
53 | - 'user_id' => (int) $user->getUserId() |
|
52 | + 'id' => (int)$_GET['fieldnoteid'], |
|
53 | + 'user_id' => (int)$user->getUserId() |
|
54 | 54 | ]); |
55 | 55 | |
56 | 56 | if ($fieldNote !== null) { |
@@ -96,7 +96,7 @@ discard block |
||
96 | 96 | // check if masslog warning is accepted (in cookie) |
97 | 97 | $masslogCookieSet = isset($_COOKIE['ocsuppressmasslogwarn']); |
98 | 98 | if ($masslogCookieSet) { |
99 | - $masslogCookieContent = (int) $_COOKIE['ocsuppressmasslogwarn']; |
|
99 | + $masslogCookieContent = (int)$_COOKIE['ocsuppressmasslogwarn']; |
|
100 | 100 | } else { |
101 | 101 | // save masslog acception in cookie that expires on midnight if clicked |
102 | 102 | if (isset($_REQUEST['suppressMasslogWarning']) && $_REQUEST['suppressMasslogWarning'] == 1) { |
@@ -108,17 +108,17 @@ discard block |
||
108 | 108 | // logtext, logtype, logday, logmonth, logyear |
109 | 109 | |
110 | 110 | $logText = isset($_POST['logtext']) ? trim($_POST['logtext']) : ''; |
111 | - $logType = isset($_REQUEST['logtype']) ? (int) $_REQUEST['logtype'] : null; |
|
111 | + $logType = isset($_REQUEST['logtype']) ? (int)$_REQUEST['logtype'] : null; |
|
112 | 112 | $logDateDay = isset($_POST['logday']) ? trim($_POST['logday']) : ($datesaved ? $defaultLogDay : date('d')); |
113 | 113 | $logDateMonth = isset($_POST['logmonth']) ? trim($_POST['logmonth']) : ($datesaved ? $defaultLogMonth : date('m')); |
114 | 114 | $logDateYear = isset($_POST['logyear']) ? trim($_POST['logyear']) : ($datesaved ? $defaultLogYear : date('Y')); |
115 | 115 | $logTimeHour = isset($_POST['loghour']) ? trim($_POST['loghour']) : ''; |
116 | 116 | $logTimeMinute = isset($_POST['logminute']) ? trim($_POST['logminute']) : ''; |
117 | - $needsMaintenance = isset($_POST['needs_maintenance2']) ? (int) $_POST['needs_maintenance2'] : (isset($_POST['needs_maintenance']) ? (int) $_POST['needs_maintenance'] : 0); |
|
118 | - $listingOutdated = isset($_POST['listing_outdated2']) ? (int) $_POST['listing_outdated2'] : (isset($_POST['listing_outdated']) ? (int) $_POST['listing_outdated'] : 0); |
|
119 | - $confirmListingOk = isset($_POST['confirm_listing_ok']) ? (int) $_POST['confirm_listing_ok'] : 0; |
|
120 | - $rateOption = isset($_POST['ratingoption']) ? (int) $_POST['ratingoption'] : 0; |
|
121 | - $rateCache = isset($_POST['rating']) ? (int) $_POST['rating'] : 0; |
|
117 | + $needsMaintenance = isset($_POST['needs_maintenance2']) ? (int)$_POST['needs_maintenance2'] : (isset($_POST['needs_maintenance']) ? (int)$_POST['needs_maintenance'] : 0); |
|
118 | + $listingOutdated = isset($_POST['listing_outdated2']) ? (int)$_POST['listing_outdated2'] : (isset($_POST['listing_outdated']) ? (int)$_POST['listing_outdated'] : 0); |
|
119 | + $confirmListingOk = isset($_POST['confirm_listing_ok']) ? (int)$_POST['confirm_listing_ok'] : 0; |
|
120 | + $rateOption = isset($_POST['ratingoption']) ? (int)$_POST['ratingoption'] : 0; |
|
121 | + $rateCache = isset($_POST['rating']) ? (int)$_POST['rating'] : 0; |
|
122 | 122 | $ocTeamComment = isset($_REQUEST['teamcomment']) ? $_REQUEST['teamcomment'] != 0 : 0; |
123 | 123 | $suppressMasslogWarning = isset($_REQUEST['suppressMasslogWarning']) ? $_REQUEST['suppressMasslogWarning'] : ($masslogCookieSet ? $masslogCookieContent : 0); |
124 | 124 | |
@@ -164,12 +164,12 @@ discard block |
||
164 | 164 | } |
165 | 165 | |
166 | 166 | // if not a found log, ignore the rating |
167 | - $rateOption = (int) ($logType == 1 || $logType == 7); |
|
167 | + $rateOption = (int)($logType == 1 || $logType == 7); |
|
168 | 168 | |
169 | 169 | // get log text editor mode (from form or from userprofile) |
170 | 170 | // 1 = text; 2 = HTML; 3 = tinyMCE |
171 | 171 | if (isset($_POST['descMode'])) { |
172 | - $descMode = (int) $_POST['descMode']; // Ocprop: 2 |
|
172 | + $descMode = (int)$_POST['descMode']; // Ocprop: 2 |
|
173 | 173 | if (($descMode < 1) || ($descMode > 3)) { |
174 | 174 | $descMode = 3; |
175 | 175 | } |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | * set seconds 00:00:01, means "00:00 was logged" |
252 | 252 | * set seconds 00:00:00, means "no time was logged" |
253 | 253 | */ |
254 | - $logTimeSecond = (int) ($logTimeHour . $logTimeMinute != '' |
|
254 | + $logTimeSecond = (int)($logTimeHour . $logTimeMinute != '' |
|
255 | 255 | && $logTimeHour == 0 |
256 | 256 | && $logTimeMinute == 0); |
257 | 257 | |
@@ -259,8 +259,8 @@ discard block |
||
259 | 259 | $logDate = date( |
260 | 260 | $opt['db']['dateformat'], |
261 | 261 | mktime( |
262 | - (int) $logTimeHour, |
|
263 | - (int) $logTimeMinute, |
|
262 | + (int)$logTimeHour, |
|
263 | + (int)$logTimeMinute, |
|
264 | 264 | $logTimeSecond, |
265 | 265 | $logDateMonth, |
266 | 266 | $logDateDay, |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | if (isset($_REQUEST['fieldnoteid']) && $_REQUEST['fieldnoteid']) { |
312 | 312 | sql( |
313 | 313 | 'DELETE FROM field_note WHERE `id` = &1 AND `user_id` = &2', |
314 | - (int) $_REQUEST['fieldnoteid'], |
|
314 | + (int)$_REQUEST['fieldnoteid'], |
|
315 | 315 | $user->getUserId() |
316 | 316 | ); |
317 | 317 | |
@@ -398,8 +398,8 @@ discard block |
||
398 | 398 | |
399 | 399 | // prepare template and display |
400 | 400 | $tpl->assign('logtype_allows_nm', implode(',', $logtype_allows_nm)); |
401 | -$tpl->assign('scrollposx', isset($_REQUEST['scrollposx']) ? (int) $_REQUEST['scrollposx']: 0); |
|
402 | -$tpl->assign('scrollposy', isset($_REQUEST['scrollposy']) ? (int) $_REQUEST['scrollposy']: 0); |
|
401 | +$tpl->assign('scrollposx', isset($_REQUEST['scrollposx']) ? (int)$_REQUEST['scrollposx'] : 0); |
|
402 | +$tpl->assign('scrollposy', isset($_REQUEST['scrollposy']) ? (int)$_REQUEST['scrollposy'] : 0); |
|
403 | 403 | $tpl->assign('validate', $validate); |
404 | 404 | $tpl->assign('editlog', false); |
405 | 405 |