@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | public $main_template = 'sys_main'; |
| 18 | 18 | public $bench = null; |
| 19 | 19 | public $compile_id = null; |
| 20 | - public $cache_id = null; // This is a smarty caching ID, not a caches.cache_id. |
|
| 20 | + public $cache_id = null; // This is a smarty caching ID, not a caches.cache_id. |
|
| 21 | 21 | public $title = ''; |
| 22 | 22 | public $menuitem = null; |
| 23 | 23 | public $nowpsearch = false; |
@@ -385,7 +385,7 @@ discard block |
||
| 385 | 385 | |
| 386 | 386 | $args = func_get_args(); |
| 387 | 387 | unset($args[0]); |
| 388 | - for ($i = 1; isset($args[$i]); $i ++) { |
|
| 388 | + for ($i = 1; isset($args[$i]); $i++) { |
|
| 389 | 389 | $this->assign('p' . $i, $args[$i]); |
| 390 | 390 | } |
| 391 | 391 | |
@@ -114,8 +114,8 @@ |
||
| 114 | 114 | /* ATTENTION: copied from internal implementation! |
| 115 | 115 | */ |
| 116 | 116 | /** |
| 117 | - * @param $resource_name |
|
| 118 | - * @param null $compile_id |
|
| 117 | + * @param string $resource_name |
|
| 118 | + * @param string $compile_id |
|
| 119 | 119 | */ |
| 120 | 120 | public function compile($resource_name, $compile_id = null) |
| 121 | 121 | { |
@@ -120,9 +120,9 @@ |
||
| 120 | 120 | { |
| 121 | 121 | $nLine = 1; |
| 122 | 122 | |
| 123 | - for ($n = 0; $n < $nPos; $n ++) { |
|
| 123 | + for ($n = 0; $n < $nPos; $n++) { |
|
| 124 | 124 | if (substr($this->msContent, $n, 1) == "\n") { |
| 125 | - $nLine ++; |
|
| 125 | + $nLine++; |
|
| 126 | 126 | } |
| 127 | 127 | } |
| 128 | 128 | |
@@ -86,8 +86,8 @@ discard block |
||
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | /** |
| 89 | - * @param $sCode |
|
| 90 | - * @param $nStartSearch |
|
| 89 | + * @param string $sCode |
|
| 90 | + * @param integer $nStartSearch |
|
| 91 | 91 | * |
| 92 | 92 | * @return bool|int |
| 93 | 93 | */ |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | |
| 133 | 133 | // TODO: performance ... scan once at __construct and store line positions |
| 134 | 134 | /** |
| 135 | - * @param $nPos |
|
| 135 | + * @param integer $nPos |
|
| 136 | 136 | * |
| 137 | 137 | * @return int |
| 138 | 138 | */ |
@@ -390,7 +390,7 @@ discard block |
||
| 390 | 390 | $thislog = mb_ereg_replace('{username}', text_xmlentities($rLog['username']), $thislog); |
| 391 | 391 | |
| 392 | 392 | if ($rLog['type'] == 3 && $rLog['needs_maintenance'] == 2) { |
| 393 | - $logtype = 'Needs Maintenance'; // with capital M, other than cache attribute |
|
| 393 | + $logtype = 'Needs Maintenance'; // with capital M, other than cache attribute |
|
| 394 | 394 | } elseif (isset($gpxLogType[$rLog['type']])) { |
| 395 | 395 | $logtype = $gpxLogType[$rLog['type']]; |
| 396 | 396 | } else { |
@@ -511,28 +511,28 @@ discard block |
||
| 511 | 511 | switch ($childWaypoint['type']) { |
| 512 | 512 | case 1: |
| 513 | 513 | $wp_typename = "Parking Area"; |
| 514 | - break; // well-known garmin symbols |
|
| 514 | + break; // well-known garmin symbols |
|
| 515 | 515 | case 2: |
| 516 | 516 | $wp_typename = "Flag, Green"; |
| 517 | - break; // stage / ref point |
|
| 517 | + break; // stage / ref point |
|
| 518 | 518 | case 3: |
| 519 | 519 | $wp_typename = "Flag, Blue"; |
| 520 | - break; // path |
|
| 520 | + break; // path |
|
| 521 | 521 | case 4: |
| 522 | 522 | $wp_typename = "Circle with X"; |
| 523 | 523 | break; // final |
| 524 | 524 | case 5: |
| 525 | 525 | $wp_typename = "Diamond, Green"; |
| 526 | - break; // point of interest |
|
| 526 | + break; // point of interest |
|
| 527 | 527 | default: |
| 528 | 528 | $wp_typename = "Flag, Blue"; |
| 529 | - break; // for the case new types are forgotten here .. |
|
| 529 | + break; // for the case new types are forgotten here .. |
|
| 530 | 530 | } |
| 531 | 531 | $thiswp = mb_ereg_replace('{type}', text_xmlentities($wp_typename), $thiswp); |
| 532 | 532 | $thiswp = mb_ereg_replace('{parent}', $r['waypoint'], $thiswp); |
| 533 | 533 | $thiswp = mb_ereg_replace('{cacheid}', $r['cacheid'], $thiswp); |
| 534 | 534 | $waypoints .= $thiswp; |
| 535 | - ++ $n; |
|
| 535 | + ++$n; |
|
| 536 | 536 | } |
| 537 | 537 | |
| 538 | 538 | if ($cacheNote && !empty($cacheNote['latitude']) && !empty($cacheNote['longitude'])) { |
@@ -156,7 +156,7 @@ |
||
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | // doppelte chars ersetzen |
| 159 | - for ($c = ord('a'); $c <= ord('z'); $c ++) { |
|
| 159 | + for ($c = ord('a'); $c <= ord('z'); $c++) { |
|
| 160 | 160 | $str = mb_ereg_replace(chr($c) . chr($c), chr($c), $str); |
| 161 | 161 | } |
| 162 | 162 | |
@@ -59,7 +59,7 @@ |
||
| 59 | 59 | $to_page = min($last_page, max($first_page, $current_page - $lrspan) + $this->max_pages_shown - 1); |
| 60 | 60 | $from_page = max($first_page, $to_page - $this->max_pages_shown + 1); |
| 61 | 61 | |
| 62 | - for ($page = $from_page; $page <= $to_page; $page ++) { |
|
| 62 | + for ($page = $from_page; $page <= $to_page; $page++) { |
|
| 63 | 63 | if ($page == $current_page) { |
| 64 | 64 | $pages[$page] = false; |
| 65 | 65 | } else { |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | * Use {page} in link_url als placeholder for the selected page number |
| 25 | 25 | * and/or {offset} for the 0-based data offset of the selected page. |
| 26 | 26 | * |
| 27 | - * @param $link_url |
|
| 27 | + * @param string $link_url |
|
| 28 | 28 | * @param int $min_pages_shown |
| 29 | 29 | * @param int $max_pages_shown |
| 30 | 30 | */ |
@@ -42,8 +42,8 @@ discard block |
||
| 42 | 42 | |
| 43 | 43 | |
| 44 | 44 | /** |
| 45 | - * @param $current_page |
|
| 46 | - * @param $total_pages |
|
| 45 | + * @param double $current_page |
|
| 46 | + * @param double $total_pages |
|
| 47 | 47 | * @param bool $page_size |
| 48 | 48 | */ |
| 49 | 49 | public function make_from_pagenr($current_page, $total_pages, $page_size = false) |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | |
| 117 | 117 | /** |
| 118 | 118 | * @param $page |
| 119 | - * @param $page_size |
|
| 119 | + * @param boolean $page_size |
|
| 120 | 120 | * |
| 121 | 121 | * @return string |
| 122 | 122 | */ |
@@ -7,34 +7,34 @@ |
||
| 7 | 7 | * Common error messages |
| 8 | 8 | ***************************************************************************/ |
| 9 | 9 | |
| 10 | - define('ERROR_UNKNOWN', 1000); |
|
| 11 | - define('ERROR_TEMPLATE_NOT_FOUND', 1001); |
|
| 12 | - define('ERROR_COMPILATION_FAILED', 1002); |
|
| 13 | - define('ERROR_NO_ACCESS', 1003); |
|
| 14 | - define('ERROR_INVALID_OPERATION', 1004); |
|
| 15 | - define('ERROR_LOGIN_REQUIRED', 1005); |
|
| 16 | - define('ERROR_MAIL_TEMPLATE_NOT_FOUND', 1006); |
|
| 17 | - define('ERROR_NO_COOKIES', 1007); |
|
| 18 | - define('ERROR_ALREADY_LOGGEDIN', 1008); |
|
| 19 | - define('ERROR_USER_NOT_ACTIVE', 1009); |
|
| 20 | - define('ERROR_USER_NO_EMAIL', 1010); |
|
| 21 | - define('ERROR_CACHE_NOT_PUBLISHED', 1011); |
|
| 22 | - define('ERROR_CACHE_LOCKED', 1012); |
|
| 10 | + define('ERROR_UNKNOWN', 1000); |
|
| 11 | + define('ERROR_TEMPLATE_NOT_FOUND', 1001); |
|
| 12 | + define('ERROR_COMPILATION_FAILED', 1002); |
|
| 13 | + define('ERROR_NO_ACCESS', 1003); |
|
| 14 | + define('ERROR_INVALID_OPERATION', 1004); |
|
| 15 | + define('ERROR_LOGIN_REQUIRED', 1005); |
|
| 16 | + define('ERROR_MAIL_TEMPLATE_NOT_FOUND', 1006); |
|
| 17 | + define('ERROR_NO_COOKIES', 1007); |
|
| 18 | + define('ERROR_ALREADY_LOGGEDIN', 1008); |
|
| 19 | + define('ERROR_USER_NOT_ACTIVE', 1009); |
|
| 20 | + define('ERROR_USER_NO_EMAIL', 1010); |
|
| 21 | + define('ERROR_CACHE_NOT_PUBLISHED', 1011); |
|
| 22 | + define('ERROR_CACHE_LOCKED', 1012); |
|
| 23 | 23 | |
| 24 | - define('ERROR_SEARCHPLUGIN_WAYPOINT_FORMAT', 1013); |
|
| 25 | - define('ERROR_SEARCHPLUGIN_WAYPOINT_MANY', 1014); |
|
| 26 | - define('ERROR_SEARCHPLUGIN_WAYPOINT_NOTFOUND', 1015); |
|
| 24 | + define('ERROR_SEARCHPLUGIN_WAYPOINT_FORMAT', 1013); |
|
| 25 | + define('ERROR_SEARCHPLUGIN_WAYPOINT_MANY', 1014); |
|
| 26 | + define('ERROR_SEARCHPLUGIN_WAYPOINT_NOTFOUND', 1015); |
|
| 27 | 27 | |
| 28 | - define('ERROR_DB_COULD_NOT_RECONNECT', 1016); |
|
| 29 | - define('ERROR_DB_NO_ROOT', 1017); |
|
| 28 | + define('ERROR_DB_COULD_NOT_RECONNECT', 1016); |
|
| 29 | + define('ERROR_DB_NO_ROOT', 1017); |
|
| 30 | 30 | |
| 31 | - define('ERROR_USER_NOT_EXISTS', 1018); |
|
| 32 | - define('ERROR_CACHE_NOT_EXISTS', 1019); |
|
| 33 | - define('ERROR_CACHELOG_NOT_EXISTS', 1020); |
|
| 34 | - define('ERROR_PICTURE_NOT_EXISTS', 1021); |
|
| 31 | + define('ERROR_USER_NOT_EXISTS', 1018); |
|
| 32 | + define('ERROR_CACHE_NOT_EXISTS', 1019); |
|
| 33 | + define('ERROR_CACHELOG_NOT_EXISTS', 1020); |
|
| 34 | + define('ERROR_PICTURE_NOT_EXISTS', 1021); |
|
| 35 | 35 | |
| 36 | - define('ERROR_UPLOAD_ERR_NO_FILE', 1022); |
|
| 37 | - define('ERROR_UPLOAD_ERR_SIZE', 1023); |
|
| 38 | - define('ERROR_UPLOAD_ERR_TYPE', 1024); |
|
| 39 | - define('ERROR_UPLOAD_UNKNOWN', 1025); |
|
| 40 | - define('ERROR_UPLOAD_ERR_BAD_FORMAT', 1026); |
|
| 36 | + define('ERROR_UPLOAD_ERR_NO_FILE', 1022); |
|
| 37 | + define('ERROR_UPLOAD_ERR_SIZE', 1023); |
|
| 38 | + define('ERROR_UPLOAD_ERR_TYPE', 1024); |
|
| 39 | + define('ERROR_UPLOAD_UNKNOWN', 1025); |
|
| 40 | + define('ERROR_UPLOAD_ERR_BAD_FORMAT', 1026); |
|
@@ -74,7 +74,7 @@ |
||
| 74 | 74 | break; |
| 75 | 75 | } |
| 76 | 76 | $command['result'][] = $r; |
| 77 | - $c ++; |
|
| 77 | + $c++; |
|
| 78 | 78 | } |
| 79 | 79 | sql_free_result($rs); |
| 80 | 80 | |
@@ -143,9 +143,9 @@ discard block |
||
| 143 | 143 | |
| 144 | 144 | } |
| 145 | 145 | $fnl = strlen($filename); |
| 146 | - $fh = "\x14\x00"; // ver needed to extract |
|
| 147 | - $fh .= "\x00\x00"; // gen purpose bit flag |
|
| 148 | - $fh .= "\x08\x00"; // compression method |
|
| 146 | + $fh = "\x14\x00"; // ver needed to extract |
|
| 147 | + $fh .= "\x00\x00"; // gen purpose bit flag |
|
| 148 | + $fh .= "\x08\x00"; // compression method |
|
| 149 | 149 | $fh .= "\x00\x00\x00\x00"; // last mod time and date |
| 150 | 150 | $fh .= pack( |
| 151 | 151 | "V3v2", |
@@ -170,16 +170,16 @@ discard block |
||
| 170 | 170 | "va*v3V2", |
| 171 | 171 | 0, |
| 172 | 172 | $fh, |
| 173 | - 0, // file comment length |
|
| 174 | - 0, // disk number start |
|
| 175 | - 0, // internal file attributes |
|
| 176 | - $attr, // external file attributes - 'archive/directory' bit set |
|
| 173 | + 0, // file comment length |
|
| 174 | + 0, // disk number start |
|
| 175 | + 0, // internal file attributes |
|
| 176 | + $attr, // external file attributes - 'archive/directory' bit set |
|
| 177 | 177 | $this->offset |
| 178 | 178 | ) . $filename; |
| 179 | 179 | |
| 180 | 180 | $this->offset += 42 + $fnl + $gzsize; |
| 181 | 181 | $this->cdir[] = $cdir; |
| 182 | - $this->cnt ++; |
|
| 182 | + $this->cnt++; |
|
| 183 | 183 | $this->idx = $this->cnt - 1; |
| 184 | 184 | } |
| 185 | 185 | |
@@ -228,7 +228,7 @@ discard block |
||
| 228 | 228 | $cdsl, // size of central dir |
| 229 | 229 | $zdsl, // offset to start of central dir |
| 230 | 230 | 0 |
| 231 | - ); // .zip file comment length |
|
| 231 | + ); // .zip file comment length |
|
| 232 | 232 | return $this->zipfile; |
| 233 | 233 | } |
| 234 | 234 | |
@@ -20,13 +20,13 @@ |
||
| 20 | 20 | * |
| 21 | 21 | ***************************************************************************/ |
| 22 | 22 | |
| 23 | -define('LOGIN_UNKNOWN_ERROR', - 1); // unkown error occured |
|
| 24 | -define('LOGIN_OK', 0); // login succeeded |
|
| 25 | -define('LOGIN_BADUSERPW', 1); // bad username or password |
|
| 26 | -define('LOGIN_TOOMUCHLOGINS', 2); // too many logins in short time |
|
| 27 | -define('LOGIN_USERNOTACTIVE', 3); // the useraccount locked |
|
| 23 | +define('LOGIN_UNKNOWN_ERROR', - 1); // unkown error occured |
|
| 24 | +define('LOGIN_OK', 0); // login succeeded |
|
| 25 | +define('LOGIN_BADUSERPW', 1); // bad username or password |
|
| 26 | +define('LOGIN_TOOMUCHLOGINS', 2); // too many logins in short time |
|
| 27 | +define('LOGIN_USERNOTACTIVE', 3); // the useraccount locked |
|
| 28 | 28 | define('LOGIN_EMPTY_USERPASSWORD', 4); // given username/password was empty |
| 29 | -define('LOGIN_LOGOUT_OK', 5); // logout was successfull |
|
| 29 | +define('LOGIN_LOGOUT_OK', 5); // logout was successfull |
|
| 30 | 30 | |
| 31 | 31 | // login times in seconds |
| 32 | 32 | define('LOGIN_TIME', 60 * 60); |