@@ -15,8 +15,8 @@ |
||
15 | 15 | |
16 | 16 | ****************************************************************************/ |
17 | 17 | |
18 | - $error_wrong_node = t('This log entry has been created on another Opencaching website. The cache can only be edited there.'); |
|
19 | - $removed_message_end = '---'; |
|
18 | + $error_wrong_node = t('This log entry has been created on another Opencaching website. The cache can only be edited there.'); |
|
19 | + $removed_message_end = '---'; |
|
20 | 20 | |
21 | 21 | |
22 | 22 | function removed_log_subject($lang) |
@@ -17,7 +17,7 @@ |
||
17 | 17 | |
18 | 18 | ****************************************************************************/ |
19 | 19 | |
20 | -$rating_tpl = '<tr> |
|
20 | +$rating_tpl = '<tr> |
|
21 | 21 | <td valign="top">' . t('Recommendations:') . '</td> |
22 | 22 | <td valign="top"> |
23 | 23 | {rating_msg} |
@@ -15,7 +15,7 @@ |
||
15 | 15 | |
16 | 16 | ****************************************************************************/ |
17 | 17 | |
18 | - $error_wrong_node = t('this description was created on another Opencaching-webserver and can only be deleted there.'); |
|
18 | + $error_wrong_node = t('this description was created on another Opencaching-webserver and can only be deleted there.'); |
|
19 | 19 | |
20 | - $commit = t('the cache description has been deleted'); |
|
21 | - $commit_title = t('delete this cache-description'); |
|
20 | + $commit = t('the cache description has been deleted'); |
|
21 | + $commit_title = t('delete this cache-description'); |
@@ -71,7 +71,7 @@ |
||
71 | 71 | $error_suffix = '</span>'; |
72 | 72 | |
73 | 73 | $htmlnotice = |
74 | - '<tr><td class="spacer" colspan="2"></td></tr> |
|
74 | + '<tr><td class="spacer" colspan="2"></td></tr> |
|
75 | 75 | <tr> |
76 | 76 | <td class="help" colspan="2"> |
77 | 77 | <img src="lang/de/ocstyle/images/misc/hint.gif" border="0" width="15" height="11" alt="' . t('Notice') . '" title="' . t('Notice') . '" /> |
@@ -21,7 +21,7 @@ |
||
21 | 21 | |
22 | 22 | //common vars |
23 | 23 | $dateformat = $opt['locale'][$locale]['format']['date']; |
24 | -$reset = t('Reset'); // obsolete |
|
24 | +$reset = t('Reset'); // obsolete |
|
25 | 25 | $yes = t('Yes'); |
26 | 26 | $no = t('No'); |
27 | 27 |
@@ -19,6 +19,6 @@ |
||
19 | 19 | LIMIT 100'); |
20 | 20 | while ($r = sql_fetch_assoc($rs)) { |
21 | 21 | echo $n . ' ' . $r['username'] . ': ' . $r['found'] . "\n"; |
22 | - $n ++; |
|
22 | + $n++; |
|
23 | 23 | } |
24 | 24 | sql_free_result($rs); |
@@ -36,7 +36,7 @@ |
||
36 | 36 | |
37 | 37 | $n = 1; |
38 | 38 | while ($r = sql_fetch_assoc($rs)) { |
39 | - echo " <tr><td style='text-align:right'> " . ($n ++) . ". </td><td style='text-align:right'>" . $r['count'] . "</td><td> " . $r['name'] . "</td></tr>\n"; |
|
39 | + echo " <tr><td style='text-align:right'> " . ($n++) . ". </td><td style='text-align:right'>" . $r['count'] . "</td><td> " . $r['name'] . "</td></tr>\n"; |
|
40 | 40 | } |
41 | 41 | sql_free_result($rs); |
42 | 42 |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | foreach ($simpletextsarray as $text) { |
28 | 28 | if ($text != '') { |
29 | 29 | if (nonalpha($text)) { |
30 | - die($r['uni'] . ' ' . $text . "\n");// obsolete for the same reason as above |
|
30 | + die($r['uni'] . ' ' . $text . "\n"); // obsolete for the same reason as above |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | $simpletext = search_text2simple($text); |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | |
60 | 60 | function nonalpha($str) |
61 | 61 | { |
62 | - for ($i = 0; $i < mb_strlen($str); $i ++) { |
|
62 | + for ($i = 0; $i < mb_strlen($str); $i++) { |
|
63 | 63 | if (!((ord(mb_substr($str, $i, 1)) >= ord('a')) && (ord(mb_substr($str, $i, 1)) <= ord('z')))) { |
64 | 64 | return true; |
65 | 65 | } |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | // ported from lib1 to lib2 / untested! |
23 | 23 | |
24 | 24 | $opt['rootpath'] = '../../'; |
25 | -require_once __DIR__.'/../../lib2/cli.inc.php'; |
|
25 | +require_once __DIR__ . '/../../lib2/cli.inc.php'; |
|
26 | 26 | |
27 | 27 | /* defaults */ |
28 | 28 | $importfiles = [ |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | $file = fopen($filename, "r"); |
45 | 45 | $cnt = 0; |
46 | 46 | while ($line = fgets($file, 4096)) { |
47 | - if ($cnt ++ == 0) {// skip first line |
|
47 | + if ($cnt++ == 0) {// skip first line |
|
48 | 48 | continue; |
49 | 49 | } |
50 | 50 |