Completed
Pull Request — master (#300)
by
unknown
07:10
created
htdocs/util2/gns/mkadmtxt.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -10,8 +10,8 @@  discard block
 block discarded – undo
10 10
  ***************************************************************************/
11 11
 
12 12
 $opt['rootpath'] = '../../';
13
-require_once $opt['rootpath'] . 'lib2/cli.inc.php';
14
-require_once $opt['rootpath'] . 'lib2/search/search.inc.php';
13
+require_once $opt['rootpath'].'lib2/cli.inc.php';
14
+require_once $opt['rootpath'].'lib2/search/search.inc.php';
15 15
 
16 16
 
17 17
 $rsLocations = sql("SELECT `uni`, `lat`, `lon`, `rc`, `cc1`, `adm1` FROM `gns_locations` WHERE `dsg` LIKE 'PPL%'");
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
     // den nächsgelegenen Ort in den geodb ermitteln
25 25
     $sql =
26
-        "SELECT " .
26
+        "SELECT ".
27 27
             geomath::getSqlDistanceFormula(
28 28
                 $rLocations['lon'],
29 29
                 $rLocations['lat'],
@@ -32,12 +32,12 @@  discard block
 block discarded – undo
32 32
                 'lon',
33 33
                 'lat',
34 34
                 'geodb_coordinates'
35
-            ) . " `distance`,
35
+            )." `distance`,
36 36
             `geodb_coordinates`.`loc_id` `loc_id`
37 37
          FROM `geodb_coordinates`
38 38
          WHERE
39
-            `lon` > '" . sql_escape($minlon) . "' AND `lon` < '" . sql_escape($maxlon) . "' AND
40
-            `lat` > '" . sql_escape($minlat) . "' AND `lat` < '" . sql_escape($maxlat) . "'
39
+            `lon` > '" . sql_escape($minlon)."' AND `lon` < '".sql_escape($maxlon)."' AND
40
+            `lat` > '" . sql_escape($minlat)."' AND `lat` < '".sql_escape($maxlat)."'
41 41
          HAVING `distance` < 10
42 42
          ORDER BY `distance` ASC
43 43
          LIMIT 1";
Please login to merge, or discard this patch.
htdocs/restorecaches.php 1 patch
Spacing   +42 added lines, -42 removed lines patch added patch discarded remove patch
@@ -132,8 +132,8 @@  discard block
 block discarded – undo
132 132
 
133 133
 */
134 134
 
135
-require __DIR__ . '/lib2/web.inc.php';
136
-require_once __DIR__ . '/lib2/logic/labels.inc.php';
135
+require __DIR__.'/lib2/web.inc.php';
136
+require_once __DIR__.'/lib2/logic/labels.inc.php';
137 137
 
138 138
 $tpl->name = 'restorecaches';
139 139
 $tpl->menuitem = MNU_ADMIN_RESTORE;
@@ -308,12 +308,12 @@  discard block
 block discarded – undo
308 308
 
309 309
 function get_archive_data($caches)
310 310
 {
311
-    $cachelist = "(" . implode(",", $caches) . ")";
311
+    $cachelist = "(".implode(",", $caches).")";
312 312
     $data = array();
313 313
     $admins = array();
314 314
 
315 315
     // make waypoint index
316
-    $rs = sql("SELECT `cache_id`, `wp_oc` FROM `caches` WHERE `cache_id` IN " . $cachelist);
316
+    $rs = sql("SELECT `cache_id`, `wp_oc` FROM `caches` WHERE `cache_id` IN ".$cachelist);
317 317
     while ($r = sql_fetch_assoc($rs)) {
318 318
         $wp_oc[$r['cache_id']] = $r['wp_oc'];
319 319
     }
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
             `latitude`,
329 329
             `restored_by`
330 330
         FROM `cache_coordinates`
331
-        WHERE `cache_id` IN " . $cachelist . "
331
+        WHERE `cache_id` IN " . $cachelist."
332 332
         ORDER BY `date_created` ASC"
333 333
     );
334 334
     // order is relevant, because multiple changes per day possible
@@ -336,7 +336,7 @@  discard block
 block discarded – undo
336 336
     while ($r = sql_fetch_assoc($rs)) {
337 337
         $coord = new coordinate($r['latitude'], $r['longitude']);
338 338
         $coord = $coord->getDecimalMinutes();
339
-        $coord = $coord['lat'] . " " . $coord['lon'];
339
+        $coord = $coord['lat']." ".$coord['lon'];
340 340
         if (isset($lastcoord[$r['cache_id']]) && $coord != $lastcoord[$r['cache_id']]) {
341 341
             // the database contains lots of old coord records with unchanged coords, wtf?
342 342
             append_data($data, $admins, $wp_oc, $r, "coord", $lastcoord[$r['cache_id']], $coord);
@@ -348,7 +348,7 @@  discard block
 block discarded – undo
348 348
     // cache country
349 349
     $rs = sql("SELECT `cache_id`, LEFT(`date_created`,10) AS `date_modified`, `country`, `restored_by`
350 350
                FROM `cache_countries`
351
-                         WHERE `cache_id` IN " . $cachelist . "
351
+                         WHERE `cache_id` IN " . $cachelist."
352 352
                          ORDER BY `date_created` ASC");
353 353
     // order is relevant, because multiple changes per day possible
354 354
     $lastcountry = array();
@@ -364,17 +364,17 @@  discard block
 block discarded – undo
364 364
     // all other cache data
365 365
     // first the current data ...
366 366
     $nextcd = array();
367
-    $rs = sql("SELECT * FROM `caches` WHERE `cache_id` IN " . $cachelist);
367
+    $rs = sql("SELECT * FROM `caches` WHERE `cache_id` IN ".$cachelist);
368 368
     while ($r = sql_fetch_assoc($rs)) {
369 369
         $nextcd[$r['wp_oc']] = $r;
370
-        $user_id = $r['user_id'];     // is used later for logs
370
+        $user_id = $r['user_id']; // is used later for logs
371 371
     }
372 372
     sql_free_result($rs);
373 373
 
374 374
     // .. and then the changes
375 375
     $rs = sql(
376 376
         "SELECT * FROM `caches_modified`
377
-        WHERE `cache_id` IN " . $cachelist . "
377
+        WHERE `cache_id` IN " . $cachelist."
378 378
         ORDER BY `date_modified` DESC"
379 379
     );
380 380
     while ($r = sql_fetch_assoc($rs)) {
@@ -417,8 +417,8 @@  discard block
 block discarded – undo
417 417
                 $wp_oc,
418 418
                 $r,
419 419
                 "time",
420
-                $r['search_time'] . '&nbsp;h',
421
-                $nextcd[$wp]['search_time'] . '&nbsp;h'
420
+                $r['search_time'].'&nbsp;h',
421
+                $nextcd[$wp]['search_time'].'&nbsp;h'
422 422
             );
423 423
         }
424 424
         if ($r['way_length'] != $nextcd[$wp]['way_length']) {
@@ -428,8 +428,8 @@  discard block
 block discarded – undo
428 428
                 $wp_oc,
429 429
                 $r,
430 430
                 "way",
431
-                $r['way_length'] . '&nbsp;km',
432
-                $nextcd[$wp]['way_length'] . '&nbsp;km'
431
+                $r['way_length'].'&nbsp;km',
432
+                $nextcd[$wp]['way_length'].'&nbsp;km'
433 433
             );
434 434
         }
435 435
         if ($r['wp_gc'] != $nextcd[$wp]['wp_gc']) {
@@ -465,9 +465,9 @@  discard block
 block discarded – undo
465 465
     // attributes
466 466
     $rs = sql(
467 467
         "SELECT * FROM `caches_attributes_modified`
468
-         WHERE `cache_id` IN " . $cachelist . "  /* OConly attrib is shown, but not restorable */
468
+         WHERE `cache_id` IN " . $cachelist."  /* OConly attrib is shown, but not restorable */
469 469
          ORDER BY `date_modified` ASC"
470
-    );   // order doesn't matter as long it is date only
470
+    ); // order doesn't matter as long it is date only
471 471
     while ($r = sql_fetch_assoc($rs)) {
472 472
         append_data(
473 473
             $data,
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
             $wp_oc,
476 476
             $r,
477 477
             "attrib",
478
-            ($r['was_set'] ? "-" : "+") . labels::getLabelValue('cache_attrib', $r['attrib_id']),
478
+            ($r['was_set'] ? "-" : "+").labels::getLabelValue('cache_attrib', $r['attrib_id']),
479 479
             ''
480 480
         );
481 481
     }
@@ -513,7 +513,7 @@  discard block
 block discarded – undo
513 513
             LENGTH(`short_desc`) AS `sdl`,
514 514
             `restored_by`
515 515
         FROM `cache_desc_modified`
516
-        WHERE `cache_id` IN " . $cachelist . "
516
+        WHERE `cache_id` IN " . $cachelist."
517 517
         ORDER BY `date_modified` DESC"
518 518
     );
519 519
     // order doesn't matter as long only one change per day is recorded
@@ -535,9 +535,9 @@  discard block
 block discarded – undo
535 535
                 $admins,
536 536
                 $wp_oc,
537 537
                 $r,
538
-                "desc(" . $r['language'] . ")",
538
+                "desc(".$r['language'].")",
539 539
                 $r['dl'] + 0,
540
-                ($next['dl'] + 0) . ' bytes'
540
+                ($next['dl'] + 0).' bytes'
541 541
             );
542 542
         }
543 543
         if ($r['hl'] + 0 != $next['hl'] + 0) {
@@ -546,9 +546,9 @@  discard block
 block discarded – undo
546 546
                 $admins,
547 547
                 $wp_oc,
548 548
                 $r,
549
-                "hint(" . $r['language'] . ")",
549
+                "hint(".$r['language'].")",
550 550
                 $r['hl'] + 0,
551
-                ($next['hl'] + 0) . ' bytes'
551
+                ($next['hl'] + 0).' bytes'
552 552
             );
553 553
         }
554 554
         if ($r['sdl'] + 0 != $next['sdl'] + 0) {
@@ -557,9 +557,9 @@  discard block
 block discarded – undo
557 557
                 $admins,
558 558
                 $wp_oc,
559 559
                 $r,
560
-                "shortdesc(" . $r['language'] . ")",
560
+                "shortdesc(".$r['language'].")",
561 561
                 $r['sdl'] + 0,
562
-                ($next['sdl'] + 0) . ' bytes'
562
+                ($next['sdl'] + 0).' bytes'
563 563
             );
564 564
         }
565 565
 
@@ -582,7 +582,7 @@  discard block
 block discarded – undo
582 582
               (SELECT 1 AS `op`, `deletion_date` AS `date_modified`, `cache_id`,
583 583
                     `user_id`, `type`, `date`, `restored_by`
584 584
                    FROM `cache_logs_archived`
585
-                  WHERE `cache_id` IN " . $cachelist . "AND `deleted_by`='&1' AND `user_id`<>'&1'
585
+                  WHERE `cache_id` IN " . $cachelist."AND `deleted_by`='&1' AND `user_id`<>'&1'
586 586
                   UNION
587 587
                   SELECT 2 AS `op`, `date_modified`, `cache_id`,
588 588
                        (SELECT `user_id` FROM `cache_logs_archived` WHERE `id`=`original_id`),
@@ -590,7 +590,7 @@  discard block
 block discarded – undo
590 590
                        (SELECT `date` FROM `cache_logs_archived` WHERE `id`=`original_id`),
591 591
                        `restored_by`
592 592
                  FROM `cache_logs_restored`
593
-                  WHERE `cache_id` IN " . $cachelist . ") `logs`
593
+                  WHERE `cache_id` IN " . $cachelist.") `logs`
594 594
                 INNER JOIN `user` ON `user`.`user_id`=`logs`.`user_id`
595 595
               ORDER BY `logs`.`date_modified` ASC",
596 596
         // order may not be exact when redoing reverts, because delete and insert
@@ -604,7 +604,7 @@  discard block
 block discarded – undo
604 604
             $wp_oc,
605 605
             $r,
606 606
             $r["op"] == 1 ? "dellog" : "restorelog",
607
-            "<a href='viewprofile.php?userid=" . $r['user_id'] . "' target='_blank'>" . $r['username'] . "</a>/" . $r['date'],
607
+            "<a href='viewprofile.php?userid=".$r['user_id']."' target='_blank'>".$r['username']."</a>/".$r['date'],
608 608
             ''
609 609
         );
610 610
     }
@@ -620,10 +620,10 @@  discard block
 block discarded – undo
620 620
 
621 621
     $piccacheid = "IF(`object_type`=2, `object_id`, IF(`object_type`=1, IFNULL((SELECT `cache_id` FROM `cache_logs` WHERE `id`=`object_id`),(SELECT `cache_id` FROM `cache_logs_archived` WHERE `id`=`object_id`)), 0))";
622 622
     $rs = sql(
623
-        "SELECT *, " . $piccacheid . "AS `cache_id` FROM `pictures_modified`
624
-         WHERE " . $piccacheid . " IN " . $cachelist . "
623
+        "SELECT *, ".$piccacheid."AS `cache_id` FROM `pictures_modified`
624
+         WHERE " . $piccacheid." IN ".$cachelist."
625 625
          ORDER BY `date_modified` ASC"
626
-    );  // order is relevant for the case of restore-reverts
626
+    ); // order is relevant for the case of restore-reverts
627 627
     while ($r = sql_fetch_assoc($rs)) {
628 628
         $r['date_modified'] = substr($r['date_modified'], 0, 10);
629 629
         switch ($r['operation']) {
@@ -645,14 +645,14 @@  discard block
 block discarded – undo
645 645
                 $picchange .= "-cache";
646 646
                 break;
647 647
         }
648
-        append_data($data, $admins, $wp_oc, $r, $picchange . "pic", $r['title'], '');
648
+        append_data($data, $admins, $wp_oc, $r, $picchange."pic", $r['title'], '');
649 649
     }
650 650
     sql_free_result($rs);
651 651
 
652 652
     // admins
653 653
     foreach ($admins as $adate => $adata) {
654 654
         foreach ($adata as $awp => $alist) {
655
-            $data[$adate][$awp] .= "<br /><strong class='adminrestore'>admins:</strong> " . implode(',', $alist);
655
+            $data[$adate][$awp] .= "<br /><strong class='adminrestore'>admins:</strong> ".implode(',', $alist);
656 656
         }
657 657
     }
658 658
 
@@ -701,9 +701,9 @@  discard block
 block discarded – undo
701 701
     } else {
702 702
         $text .= " class='userchange'";
703 703
     }
704
-    $text .= ">$field</strong>: $oldvalue" . ($newvalue != "" ? " &rarr; $newvalue" : "");
704
+    $text .= ">$field</strong>: $oldvalue".($newvalue != "" ? " &rarr; $newvalue" : "");
705 705
     if (isset($data[$mdate][$wp])) {
706
-        $data[$mdate][$wp] .= ", " . $text;
706
+        $data[$mdate][$wp] .= ", ".$text;
707 707
     } else {
708 708
         $data[$mdate][$wp] = $text;
709 709
     }
@@ -716,8 +716,8 @@  discard block
 block discarded – undo
716 716
             $admins[$mdate][$wp] = [];
717 717
         }
718 718
         $admins[$mdate][$wp][$r['restored_by'] + 0]
719
-            = "<a href='viewprofile.php?userid=" . $r['restored_by'] . "' target='_blank'>" .
720
-            sql_value("SELECT `username` FROM `user` WHERE `user_id`='&1'", "", $r['restored_by']) .
719
+            = "<a href='viewprofile.php?userid=".$r['restored_by']."' target='_blank'>".
720
+            sql_value("SELECT `username` FROM `user` WHERE `user_id`='&1'", "", $r['restored_by']).
721 721
             "</a>";
722 722
     }
723 723
 }
@@ -727,7 +727,7 @@  discard block
 block discarded – undo
727 727
 {
728 728
     global $opt, $login;
729 729
 
730
-    sql("SET @restoredby='&1'", $login->userid);         // is evaluated by trigger functions
730
+    sql("SET @restoredby='&1'", $login->userid); // is evaluated by trigger functions
731 731
     sql_slave("SET @restoredby='&1'", $login->userid);
732 732
 
733 733
     $restored = array();
@@ -837,12 +837,12 @@  discard block
 block discarded – undo
837 837
                     if ($setfields != "") {
838 838
                         $setfields .= ",";
839 839
                     }
840
-                    $setfields .= "`$field`='" . sql_escape($r[$field]) . "'";
840
+                    $setfields .= "`$field`='".sql_escape($r[$field])."'";
841 841
                     $restored[$wp][$field] = true;
842 842
                 }
843 843
             }
844 844
             if ($setfields != "" && !$simulate) {
845
-                sql("UPDATE `caches` SET " . $setfields . " WHERE `cache_id`='&1'", $cacheid);
845
+                sql("UPDATE `caches` SET ".$setfields." WHERE `cache_id`='&1'", $cacheid);
846 846
             }
847 847
         }
848 848
         sql_free_result($rs);
@@ -1019,7 +1019,7 @@  discard block
 block discarded – undo
1019 1019
                         // id, uuid, date_created and last_modified are set automatically;
1020 1020
                         // picture will be updated automatically on picture-restore
1021 1021
                         $log = new cachelog();
1022
-                        $log->setNode($r['node']);  // cachelog class currently does not initialize node field
1022
+                        $log->setNode($r['node']); // cachelog class currently does not initialize node field
1023 1023
                         $log->setCacheId($r['cache_id']);
1024 1024
                         $log->setUserId($r['user_id']);
1025 1025
                         $log->setType($r['type'], true);
@@ -1071,7 +1071,7 @@  discard block
 block discarded – undo
1071 1071
                 }  // not already processed
1072 1072
 
1073 1073
                 if ($error != "") {
1074
-                    $restored[$wp]['internal error - could not $error log ' + $r['id'] + "/" + $logid];
1074
+                    $restored[$wp]['internal error - could not $error log ' +$r['id'] + "/" +$logid];
1075 1075
                 }
1076 1076
                 if ($logs_restored) {
1077 1077
                     $restored[$wp]['logs'] = true;
@@ -1203,7 +1203,7 @@  discard block
 block discarded – undo
1203 1203
                 }  // not already processed
1204 1204
 
1205 1205
                 if ($error != "") {
1206
-                    $restored[$wp]['internal error - could not $error picture ' . $r['id'] + "/" + $picid] = true;
1206
+                    $restored[$wp]['internal error - could not $error picture '.$r['id'] + "/" +$picid] = true;
1207 1207
                 }
1208 1208
                 if ($pics_restored) {
1209 1209
                     $restored[$wp]['pictures'] = true;
Please login to merge, or discard this patch.
htdocs/lib/sqldebugger.inc.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  * Unicode Reminder メモ
10 10
  ****************************************************************************/
11 11
 
12
-require_once $opt['rootpath'] . 'lib/bench.inc.php';
12
+require_once $opt['rootpath'].'lib/bench.inc.php';
13 13
 
14 14
 $sqldbg_cmdNo = 0;
15 15
 $sqldbg_sumTimes = 0;
@@ -155,9 +155,9 @@  discard block
 block discarded – undo
155 155
     global $sqldbg_cmdNo;
156 156
     global $sqldbg_sumTimes;
157 157
 
158
-    $sqldbg_cmdNo ++;
158
+    $sqldbg_cmdNo++;
159 159
 
160
-    echo '<p class="sqlno"><span class="white">/*</span> SQL command ' . $sqldbg_cmdNo . ' ';
160
+    echo '<p class="sqlno"><span class="white">/*</span> SQL command '.$sqldbg_cmdNo.' ';
161 161
     if ($bSlave) {
162 162
         echo '<span class="slave_title">(slave)</span>';
163 163
     }
@@ -224,19 +224,19 @@  discard block
 block discarded – undo
224 224
         $bFirstLine = true;
225 225
         $nLine = 0;
226 226
         $rs = mysql_query($sqlexplain, $dblink);
227
-        echo '<div class="selrows">Number of selected rows: ' . mysql_num_rows($rs) . '</div>';
227
+        echo '<div class="selrows">Number of selected rows: '.mysql_num_rows($rs).'</div>';
228 228
 
229 229
         echo '<table class="firstresultrow" border="1">';
230 230
 
231 231
         while ($r = sql_fetch_assoc($rs)) {
232 232
             $usebr = true;
233
-            $nLine ++;
233
+            $nLine++;
234 234
             if ($bFirstLine == true) {
235
-                echo '<tr>' . "\n";
235
+                echo '<tr>'."\n";
236 236
                 foreach ($r as $field => $value) {
237
-                    echo '<th>' . htmlspecialchars($field, ENT_COMPAT, 'UTF-8') . '</th>' . "\n";
237
+                    echo '<th>'.htmlspecialchars($field, ENT_COMPAT, 'UTF-8').'</th>'."\n";
238 238
                 }
239
-                echo '</tr>' . "\n";
239
+                echo '</tr>'."\n";
240 240
             }
241 241
 
242 242
             if ($bFirstLine) {
@@ -246,9 +246,9 @@  discard block
 block discarded – undo
246 246
             }
247 247
 
248 248
             foreach ($r as $value) {
249
-                echo '<td>' . htmlspecialchars(($value != null) ? $value : 'NULL', ENT_COMPAT, 'UTF-8') . '</td>';
249
+                echo '<td>'.htmlspecialchars(($value != null) ? $value : 'NULL', ENT_COMPAT, 'UTF-8').'</td>';
250 250
             }
251
-            echo '</tr>' . "\n";
251
+            echo '</tr>'."\n";
252 252
 
253 253
             if ($nLine == 25) {
254 254
                 break;
@@ -261,27 +261,27 @@  discard block
 block discarded – undo
261 261
         echo '<table class="explain" border="1">';
262 262
 
263 263
         $bFirstLine = true;
264
-        $rs = mysql_query('EXPLAIN EXTENDED ' . $sqlexplain);
264
+        $rs = mysql_query('EXPLAIN EXTENDED '.$sqlexplain);
265 265
         while ($r = sql_fetch_assoc($rs)) {
266 266
             if ($bFirstLine == true) {
267 267
                 echo '<tr>';
268 268
                 foreach ($r as $field => $value) {
269
-                    echo '<th>' . htmlspecialchars($field, ENT_COMPAT, 'UTF-8') . '</th>';
269
+                    echo '<th>'.htmlspecialchars($field, ENT_COMPAT, 'UTF-8').'</th>';
270 270
                 }
271
-                echo '</tr>' . "\n";
271
+                echo '</tr>'."\n";
272 272
 
273 273
                 $bFirstLine = false;
274 274
             }
275 275
 
276 276
             echo '<tr>';
277 277
             foreach ($r as $value) {
278
-                echo '<td>' . htmlspecialchars(
278
+                echo '<td>'.htmlspecialchars(
279 279
                     ($value != null) ? mb_ereg_replace('\*/', '* /', $value) : 'NULL',
280 280
                     ENT_COMPAT,
281 281
                     'UTF-8'
282
-                ) . '</td>';
282
+                ).'</td>';
283 283
             }
284
-            echo '</tr>' . "\n";
284
+            echo '</tr>'."\n";
285 285
         }
286 286
         echo '</table>';
287 287
         $usebr = true;
@@ -303,14 +303,14 @@  discard block
 block discarded – undo
303 303
         echo '<table>';
304 304
         $rs = mysql_query('SHOW WARNINGS', $dblink);
305 305
         while ($r = sql_fetch_assoc($rs)) {
306
-            echo '<tr><td>' . htmlspecialchars($r['Message'], ENT_COMPAT, 'UTF-8') . '</td></tr>';
306
+            echo '<tr><td>'.htmlspecialchars($r['Message'], ENT_COMPAT, 'UTF-8').'</td></tr>';
307 307
         }
308 308
         echo '</table>';
309 309
         echo '</div>';
310 310
     }
311 311
 
312
-    echo '<div class="runtime">Runtime: ' . sprintf('%01.5f', $bSqlExecution->Diff()) . ' sek.</div>';
313
-    echo '<div class="affectedrows">Number of affected rows: ' . mysql_affected_rows($dblink) . '</div>';
312
+    echo '<div class="runtime">Runtime: '.sprintf('%01.5f', $bSqlExecution->Diff()).' sek.</div>';
313
+    echo '<div class="affectedrows">Number of affected rows: '.mysql_affected_rows($dblink).'</div>';
314 314
 
315 315
     echo '<div class="white">*/</div></div>';
316 316
 
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
     global $sqldbg_sumTimes;
323 323
 
324 324
     echo '<span class="white">/*</span><div class="allruntime"><hr>';
325
-    echo 'Runtime sum: ' . sprintf('%01.5f', $sqldbg_sumTimes) . ' sek.<span class="white">*/</span></div>';
325
+    echo 'Runtime sum: '.sprintf('%01.5f', $sqldbg_sumTimes).' sek.<span class="white">*/</span></div>';
326 326
 
327 327
     echo '</body></html>';
328 328
     exit;
@@ -347,13 +347,13 @@  discard block
 block discarded – undo
347 347
         return '';
348 348
     }
349 349
 
350
-    return 'SELECT * ' . mb_substr($sql, $start);
350
+    return 'SELECT * '.mb_substr($sql, $start);
351 351
 }
352 352
 
353 353
 function sqldbg_insert_nocache($sql)
354 354
 {
355 355
     if (mb_strtoupper(mb_substr($sql, 0, 7)) == 'SELECT ') {
356
-        $sql = 'SELECT SQL_NO_CACHE ' . mb_substr($sql, 7);
356
+        $sql = 'SELECT SQL_NO_CACHE '.mb_substr($sql, 7);
357 357
     }
358 358
 
359 359
     return $sql;
Please login to merge, or discard this patch.
htdocs/newcache.php 1 patch
Spacing   +60 added lines, -60 removed lines patch added patch discarded remove patch
@@ -9,10 +9,10 @@  discard block
 block discarded – undo
9 9
  *  Unicode Reminder メモ
10 10
  ***************************************************************************/
11 11
 
12
-require_once __DIR__ . '/lib/consts.inc.php';
12
+require_once __DIR__.'/lib/consts.inc.php';
13 13
 $opt['gui'] = GUI_HTML;
14
-require_once __DIR__ . '/lib/common.inc.php';
15
-require_once __DIR__ . '/lib2/edithelper.inc.php';
14
+require_once __DIR__.'/lib/common.inc.php';
15
+require_once __DIR__.'/lib2/edithelper.inc.php';
16 16
 
17 17
 $no_tpl_build = false;
18 18
 
@@ -33,10 +33,10 @@  discard block
 block discarded – undo
33 33
 
34 34
         //set here the template to process
35 35
         $tplname = 'newcache';
36
-        require_once $stylepath . '/' . $tplname . '.inc.php';
36
+        require_once $stylepath.'/'.$tplname.'.inc.php';
37 37
 
38 38
         //set template replacements
39
-        tpl_set_var('reset', $reset);  // obsolete
39
+        tpl_set_var('reset', $reset); // obsolete
40 40
         tpl_set_var('submit', $submit);
41 41
         tpl_set_var('general_message', '');
42 42
         tpl_set_var('hidden_since_message', '');
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         tpl_set_var('diff_message', '');
54 54
         tpl_set_var('safari_message', '');
55 55
 
56
-        $sel_type = isset($_POST['type']) ? $_POST['type'] : 0;  // Ocprop
56
+        $sel_type = isset($_POST['type']) ? $_POST['type'] : 0; // Ocprop
57 57
         if (!isset($_POST['size'])) {
58 58
             if ($sel_type == 4 || $sel_type == 5) {
59 59
                 $sel_size = 7;
@@ -61,15 +61,15 @@  discard block
 block discarded – undo
61 61
                 $sel_size = - 1;
62 62
             }
63 63
         } else {
64
-            $sel_size = isset($_POST['size']) ? $_POST['size'] : - 1;  // Ocprop
64
+            $sel_size = isset($_POST['size']) ? $_POST['size'] : - 1; // Ocprop
65 65
         }
66 66
         $sel_lang = isset($_POST['desc_lang']) ? $_POST['desc_lang'] : $default_lang;
67
-        $sel_country = isset($_POST['country']) ? $_POST['country'] : getUserCountry();  // Ocprop
67
+        $sel_country = isset($_POST['country']) ? $_POST['country'] : getUserCountry(); // Ocprop
68 68
         $show_all_countries = isset($_POST['show_all_countries']) ? $_POST['show_all_countries'] : 0;
69 69
         $show_all_langs = isset($_POST['show_all_langs']) ? $_POST['show_all_langs'] : 0;
70 70
 
71 71
         //coords
72
-        $lonEW = isset($_POST['lonEW']) ? $_POST['lonEW'] : $default_EW;  // Ocprop
72
+        $lonEW = isset($_POST['lonEW']) ? $_POST['lonEW'] : $default_EW; // Ocprop
73 73
         if ($lonEW == 'E') {
74 74
             tpl_set_var('lonEsel', ' selected="selected"');
75 75
             tpl_set_var('lonWsel', '');
@@ -77,13 +77,13 @@  discard block
 block discarded – undo
77 77
             tpl_set_var('lonEsel', '');
78 78
             tpl_set_var('lonWsel', ' selected="selected"');
79 79
         }
80
-        $lon_h = isset($_POST['lon_h']) ? $_POST['lon_h'] : '0';  // Ocprop
80
+        $lon_h = isset($_POST['lon_h']) ? $_POST['lon_h'] : '0'; // Ocprop
81 81
         tpl_set_var('lon_h', htmlspecialchars($lon_h, ENT_COMPAT, 'UTF-8'));
82 82
 
83
-        $lon_min = isset($_POST['lon_min']) ? $_POST['lon_min'] : '00.000';  // Ocprop
83
+        $lon_min = isset($_POST['lon_min']) ? $_POST['lon_min'] : '00.000'; // Ocprop
84 84
         tpl_set_var('lon_min', htmlspecialchars($lon_min, ENT_COMPAT, 'UTF-8'));
85 85
 
86
-        $latNS = isset($_POST['latNS']) ? $_POST['latNS'] : $default_NS;  // Ocprop
86
+        $latNS = isset($_POST['latNS']) ? $_POST['latNS'] : $default_NS; // Ocprop
87 87
         if ($latNS == 'N') {
88 88
             tpl_set_var('latNsel', ' selected="selected"');
89 89
             tpl_set_var('latSsel', '');
@@ -91,14 +91,14 @@  discard block
 block discarded – undo
91 91
             tpl_set_var('latNsel', '');
92 92
             tpl_set_var('latSsel', ' selected="selected"');
93 93
         }
94
-        $lat_h = isset($_POST['lat_h']) ? $_POST['lat_h'] : '0';  // Ocprop
94
+        $lat_h = isset($_POST['lat_h']) ? $_POST['lat_h'] : '0'; // Ocprop
95 95
         tpl_set_var('lat_h', htmlspecialchars($lat_h, ENT_COMPAT, 'UTF-8'));
96 96
 
97
-        $lat_min = isset($_POST['lat_min']) ? $_POST['lat_min'] : '00.000';  // Ocprop
97
+        $lat_min = isset($_POST['lat_min']) ? $_POST['lat_min'] : '00.000'; // Ocprop
98 98
         tpl_set_var('lat_min', htmlspecialchars($lat_min, ENT_COMPAT, 'UTF-8'));
99 99
 
100 100
         //name
101
-        $name = isset($_POST['name']) ? trim($_POST['name']) : '';  // Ocprop
101
+        $name = isset($_POST['name']) ? trim($_POST['name']) : ''; // Ocprop
102 102
         tpl_set_var('name', htmlspecialchars($name, ENT_COMPAT, 'UTF-8'));
103 103
 
104 104
         //shortdesc
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
                 $oldDescMode = $descMode;
121 121
             }
122 122
         } else {
123
-            if (sqlValue("SELECT `no_htmledit_flag` FROM `user` WHERE `user_id`='" . sql_escape($usr['userid']) . "'", 1) == 1) {
123
+            if (sqlValue("SELECT `no_htmledit_flag` FROM `user` WHERE `user_id`='".sql_escape($usr['userid'])."'", 1) == 1) {
124 124
                 $descMode = 1;
125 125
             } else {
126 126
                 $descMode = 3;
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 
131 131
         // fuer alte Versionen von OCProp
132 132
         if (isset($_POST['submit']) && !isset($_POST['version2'])) {
133
-            $descMode = (isset($_POST['desc_html']) && ($_POST['desc_html'] == 1)) ? 2 : 1;  // Ocprop
133
+            $descMode = (isset($_POST['desc_html']) && ($_POST['desc_html'] == 1)) ? 2 : 1; // Ocprop
134 134
             $_POST['submitform'] = $_POST['submit'];
135 135
 
136 136
             $short_desc = iconv("ISO-8859-1", "UTF-8", $short_desc);
@@ -152,13 +152,13 @@  discard block
 block discarded – undo
152 152
 
153 153
         tpl_set_var('desc', htmlspecialchars($desc, ENT_COMPAT, 'UTF-8'));
154 154
 
155
-        $headers = tpl_get_var('htmlheaders') . "\n";
155
+        $headers = tpl_get_var('htmlheaders')."\n";
156 156
         if ($descMode == 3) {
157 157
             // TinyMCE
158
-            $headers .= '<script language="javascript" type="text/javascript" src="resource2/tinymce/tiny_mce_gzip.js"></script>' . "\n";
159
-            $headers .= '<script language="javascript" type="text/javascript" src="resource2/tinymce/config/desc.js.php?cacheid=0&lang=' . strtolower($locale) . '"></script>' . "\n";
158
+            $headers .= '<script language="javascript" type="text/javascript" src="resource2/tinymce/tiny_mce_gzip.js"></script>'."\n";
159
+            $headers .= '<script language="javascript" type="text/javascript" src="resource2/tinymce/config/desc.js.php?cacheid=0&lang='.strtolower($locale).'"></script>'."\n";
160 160
         }
161
-        $headers .= '<script language="javascript" type="text/javascript" src="' . editorJsPath() . '"></script>' . "\n";
161
+        $headers .= '<script language="javascript" type="text/javascript" src="'.editorJsPath().'"></script>'."\n";
162 162
         tpl_set_var('htmlheaders', $headers);
163 163
 
164 164
         //effort
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
         $st_hours = floor($search_time);
183 183
         $st_minutes = sprintf('%02.0F', ($search_time - $st_hours) * 60);
184 184
 
185
-        tpl_set_var('search_time', $st_hours . ':' . $st_minutes);
185
+        tpl_set_var('search_time', $st_hours.':'.$st_minutes);
186 186
         tpl_set_var('way_length', $way_length);
187 187
 
188 188
 
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
         }
197 197
 
198 198
         //tos
199
-        $tos = isset($_POST['TOS']) ? 1 : 0;  // Ocprop
199
+        $tos = isset($_POST['TOS']) ? 1 : 0; // Ocprop
200 200
         if ($tos == 1) {
201 201
             tpl_set_var('toschecked', ' checked="checked"');
202 202
         } else {
@@ -204,9 +204,9 @@  discard block
 block discarded – undo
204 204
         }
205 205
 
206 206
         //hidden_since
207
-        $hidden_day = isset($_POST['hidden_day']) ? $_POST['hidden_day'] : date('d');  // Ocprop
208
-        $hidden_month = isset($_POST['hidden_month']) ? $_POST['hidden_month'] : date('m');  // Ocprop
209
-        $hidden_year = isset($_POST['hidden_year']) ? $_POST['hidden_year'] : date('Y');  // Ocprop
207
+        $hidden_day = isset($_POST['hidden_day']) ? $_POST['hidden_day'] : date('d'); // Ocprop
208
+        $hidden_month = isset($_POST['hidden_month']) ? $_POST['hidden_month'] : date('m'); // Ocprop
209
+        $hidden_year = isset($_POST['hidden_year']) ? $_POST['hidden_year'] : date('Y'); // Ocprop
210 210
         tpl_set_var('hidden_day', htmlspecialchars($hidden_day, ENT_COMPAT, 'UTF-8'));
211 211
         tpl_set_var('hidden_month', htmlspecialchars($hidden_month, ENT_COMPAT, 'UTF-8'));
212 212
         tpl_set_var('hidden_year', htmlspecialchars($hidden_year, ENT_COMPAT, 'UTF-8'));
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
         tpl_set_var('publish_later_checked', '');
224 224
         tpl_set_var('publish_notnow_checked', '');
225 225
 
226
-        $publish = isset($_POST['publish']) ? $_POST['publish'] : 'now2';  // Ocprop
226
+        $publish = isset($_POST['publish']) ? $_POST['publish'] : 'now2'; // Ocprop
227 227
         if ($publish == 'now2') {
228 228
             tpl_set_var('publish_now_checked', 'checked');
229 229
         } elseif ($publish == 'later') {
@@ -237,11 +237,11 @@  discard block
 block discarded – undo
237 237
         // fill activate hours
238 238
         $activate_hour = isset($_POST['activate_hour']) ? $_POST['activate_hour'] + 0 : date('H') + 0;
239 239
         $activation_hours = '';
240
-        for ($i = 0; $i <= 23; $i ++) {
240
+        for ($i = 0; $i <= 23; $i++) {
241 241
             if ($activate_hour == $i) {
242
-                $activation_hours .= '<option value="' . $i . '" selected="selected">' . $i . '</option>';
242
+                $activation_hours .= '<option value="'.$i.'" selected="selected">'.$i.'</option>';
243 243
             } else {
244
-                $activation_hours .= '<option value="' . $i . '">' . $i . '</option>';
244
+                $activation_hours .= '<option value="'.$i.'">'.$i.'</option>';
245 245
             }
246 246
             $activation_hours .= "\n";
247 247
         }
@@ -253,30 +253,30 @@  discard block
 block discarded – undo
253 253
 
254 254
         // gc- and nc-waypoints
255 255
         // fix #4356: gc waypoints are frequently copy&pasted with leading spaces
256
-        $wp_gc = isset($_POST['wp_gc']) ? strtoupper(trim($_POST['wp_gc'])) : '';  // Ocprop
256
+        $wp_gc = isset($_POST['wp_gc']) ? strtoupper(trim($_POST['wp_gc'])) : ''; // Ocprop
257 257
         tpl_set_var('wp_gc', htmlspecialchars($wp_gc, ENT_COMPAT, 'UTF-8'));
258 258
 
259 259
         //difficulty
260
-        $difficulty = isset($_POST['difficulty']) ? $_POST['difficulty'] : 1;  // Ocprop
261
-        $difficulty_options = '<option value="1">' . $sel_message . '</option>';
262
-        for ($i = 2; $i <= 10; $i ++) {
260
+        $difficulty = isset($_POST['difficulty']) ? $_POST['difficulty'] : 1; // Ocprop
261
+        $difficulty_options = '<option value="1">'.$sel_message.'</option>';
262
+        for ($i = 2; $i <= 10; $i++) {
263 263
             if ($difficulty == $i) {
264
-                $difficulty_options .= '<option value="' . $i . '" selected="selected">' . $i / 2 . '</option>';
264
+                $difficulty_options .= '<option value="'.$i.'" selected="selected">'.$i / 2.'</option>';
265 265
             } else {
266
-                $difficulty_options .= '<option value="' . $i . '">' . $i / 2 . '</option>';
266
+                $difficulty_options .= '<option value="'.$i.'">'.$i / 2.'</option>';
267 267
             }
268 268
             $difficulty_options .= "\n";
269 269
         }
270 270
         tpl_set_var('difficulty_options', $difficulty_options);
271 271
 
272 272
         //terrain
273
-        $terrain = isset($_POST['terrain']) ? $_POST['terrain'] : 1;  // Ocprop
274
-        $terrain_options = '<option value="1">' . $sel_message . '</option>';
275
-        for ($i = 2; $i <= 10; $i ++) {
273
+        $terrain = isset($_POST['terrain']) ? $_POST['terrain'] : 1; // Ocprop
274
+        $terrain_options = '<option value="1">'.$sel_message.'</option>';
275
+        for ($i = 2; $i <= 10; $i++) {
276 276
             if ($terrain == $i) {
277
-                $terrain_options .= '<option value="' . $i . '" selected="selected">' . $i / 2 . '</option>';
277
+                $terrain_options .= '<option value="'.$i.'" selected="selected">'.$i / 2.'</option>';
278 278
             } else {
279
-                $terrain_options .= '<option value="' . $i . '">' . $i / 2 . '</option>';
279
+                $terrain_options .= '<option value="'.$i.'">'.$i / 2.'</option>';
280 280
             }
281 281
             $terrain_options .= "\n";
282 282
         }
@@ -284,34 +284,34 @@  discard block
 block discarded – undo
284 284
 
285 285
         //sizeoptions
286 286
         $sSelected = ($sel_size == - 1) ? ' selected="selected"' : '';
287
-        $sizes = '<option value="-1"' . $sSelected . '>' . htmlspecialchars(t('Please select!'), ENT_COMPAT, 'UTF-8') . '</option>';
287
+        $sizes = '<option value="-1"'.$sSelected.'>'.htmlspecialchars(t('Please select!'), ENT_COMPAT, 'UTF-8').'</option>';
288 288
         $rsSizes = sql(
289 289
             "SELECT `cache_size`.`id`, IFNULL(`sys_trans_text`.`text`, `cache_size`.`name`) AS `name`
290 290
                   FROM `cache_size`
291 291
              LEFT JOIN `sys_trans` ON `cache_size`.`trans_id`=`sys_trans`.`id`
292 292
              LEFT JOIN `sys_trans_text` ON `sys_trans`.`id`=`sys_trans_text`.`trans_id` AND
293
-                       `sys_trans_text`.`lang`='" . sql_escape($locale) . "'
293
+                       `sys_trans_text`.`lang`='" . sql_escape($locale)."'
294 294
               ORDER BY `cache_size`.`ordinal` ASC"
295 295
         );
296 296
         while ($rSize = sql_fetch_assoc($rsSizes)) {
297 297
             $sSelected = ($rSize['id'] == $sel_size) ? ' selected="selected"' : '';
298
-            $sizes .= '<option value="' . $rSize['id'] . '"' . $sSelected . '>' . htmlspecialchars($rSize['name'], ENT_COMPAT, 'UTF-8') . '</option>';
298
+            $sizes .= '<option value="'.$rSize['id'].'"'.$sSelected.'>'.htmlspecialchars($rSize['name'], ENT_COMPAT, 'UTF-8').'</option>';
299 299
         }
300 300
         sql_free_result($rsSizes);
301 301
         tpl_set_var('sizeoptions', $sizes);
302 302
 
303 303
         //typeoptions
304 304
         $sSelected = ($sel_type == - 1) ? ' selected="selected"' : '';
305
-        $types = '<option value="-1"' . $sSelected . '>' . htmlspecialchars(t('Please select!'), ENT_COMPAT, 'UTF-8') . '</option>';
305
+        $types = '<option value="-1"'.$sSelected.'>'.htmlspecialchars(t('Please select!'), ENT_COMPAT, 'UTF-8').'</option>';
306 306
         $rsTypes = sql("SELECT `cache_type`.`id`, IFNULL(`sys_trans_text`.`text`, `cache_type`.`en`) AS `name`
307 307
                               FROM `cache_type`
308 308
                          LEFT JOIN `sys_trans` ON `cache_type`.`trans_id`=`sys_trans`.`id`
309 309
                          LEFT JOIN `sys_trans_text` ON `sys_trans`.`id`=`sys_trans_text`.`trans_id` AND
310
-                                   `sys_trans_text`.`lang`='" . sql_escape($locale) . "'
310
+                                   `sys_trans_text`.`lang`='" . sql_escape($locale)."'
311 311
                           ORDER BY `cache_type`.`ordinal` ASC");
312 312
         while ($rType = sql_fetch_assoc($rsTypes)) {
313 313
             $sSelected = ($rType['id'] == $sel_type) ? ' selected="selected"' : '';
314
-            $types .= '<option value="' . $rType['id'] . '"' . $sSelected . '>' . htmlspecialchars($rType['name'], ENT_COMPAT, 'UTF-8') . '</option>';
314
+            $types .= '<option value="'.$rType['id'].'"'.$sSelected.'>'.htmlspecialchars($rType['name'], ENT_COMPAT, 'UTF-8').'</option>';
315 315
         }
316 316
         sql_free_result($rsTypes);
317 317
         tpl_set_var('typeoptions', $types);
@@ -342,7 +342,7 @@  discard block
 block discarded – undo
342 342
             tpl_set_var('show_all_langs', '0');
343 343
             tpl_set_var(
344 344
                 'show_all_langs_submit',
345
-                '<input type="submit" name="show_all_langs_submit" value="' . $show_all . '"/>'
345
+                '<input type="submit" name="show_all_langs_submit" value="'.$show_all.'"/>'
346 346
             );
347 347
 
348 348
             $rs = sql(
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
 
377 377
         while ($record = sql_fetch_assoc($rs)) {
378 378
             $sSelected = ($record['short'] == $sel_lang) ? ' selected="selected"' : '';
379
-            $langsoptions .= '<option value="' . htmlspecialchars($record['short'], ENT_COMPAT, 'UTF-8') . '"' . $sSelected . '>' . htmlspecialchars($record['name'], ENT_COMPAT, 'UTF-8') . '</option>' . "\n";
379
+            $langsoptions .= '<option value="'.htmlspecialchars($record['short'], ENT_COMPAT, 'UTF-8').'"'.$sSelected.'>'.htmlspecialchars($record['name'], ENT_COMPAT, 'UTF-8').'</option>'."\n";
380 380
         }
381 381
 
382 382
         tpl_set_var('langoptions', $langsoptions);
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
 
400 400
         if ($show_all_countries == 0) {
401 401
             tpl_set_var('show_all_countries', '0');
402
-            tpl_set_var('show_all_countries_submit', '<input type="submit" id="showallcountries" class="formbutton" name="show_all_countries_submit" value="' . $show_all . '" onclick="submitbutton(\'showallcountries\')" />');
402
+            tpl_set_var('show_all_countries_submit', '<input type="submit" id="showallcountries" class="formbutton" name="show_all_countries_submit" value="'.$show_all.'" onclick="submitbutton(\'showallcountries\')" />');
403 403
 
404 404
             $rs = sql(
405 405
                 "SELECT `countries`.`short`, IFNULL(`sys_trans_text`.`text`, `countries`.`name`) AS `name`
@@ -434,7 +434,7 @@  discard block
 block discarded – undo
434 434
         // build the "country" dropdown list, preselect $sel_country
435 435
         while ($record = sql_fetch_array($rs)) {
436 436
             $sSelected = ($record['short'] == $sel_country) ? ' selected="selected"' : '';
437
-            $countriesoptions .= '<option value="' . htmlspecialchars($record['short'], ENT_COMPAT, 'UTF-8') . '"' . $sSelected . '>' . htmlspecialchars($record['name'], ENT_COMPAT, 'UTF-8') . '</option>' . "\n";
437
+            $countriesoptions .= '<option value="'.htmlspecialchars($record['short'], ENT_COMPAT, 'UTF-8').'"'.$sSelected.'>'.htmlspecialchars($record['name'], ENT_COMPAT, 'UTF-8').'</option>'."\n";
438 438
         }
439 439
         sql_free_result($rs);
440 440
 
@@ -488,7 +488,7 @@  discard block
 block discarded – undo
488 488
                 LEFT JOIN `sys_trans_text` AS `ttdesc`
489 489
                     ON `tdesc`.`id`=`ttdesc`.`trans_id`
490 490
                     AND `ttdesc`.`lang`='&1'
491
-                WHERE `cache_attrib`.`group_id`=" . ($rAttrGroup['id'] + 0) . "
491
+                WHERE `cache_attrib`.`group_id`=" . ($rAttrGroup['id'] + 0)."
492 492
                 AND NOT IFNULL(`cache_attrib`.`hidden`, 0)=1
493 493
                 AND `cache_attrib`.`selectable`!=0
494 494
                 ORDER BY `cache_attrib`.`group_id`, `cache_attrib`.`id`",
@@ -508,7 +508,7 @@  discard block
 block discarded – undo
508 508
                 $line = mb_ereg_replace('{name}', escape_javascript($record['name']), $line);
509 509
                 $line = mb_ereg_replace('{color}', $rAttrGroup['color'], $line);
510 510
                 $group_line .= $line;
511
-                $nLineAttrCount ++;
511
+                $nLineAttrCount++;
512 512
 
513 513
                 $line = $cache_attrib_js;
514 514
                 $line = mb_ereg_replace('{id}', $record['id'], $line);
@@ -673,8 +673,8 @@  discard block
 block discarded – undo
673 673
                         "SELECT MIN(wp_oc)
674 674
                          FROM `caches`
675 675
                          WHERE `status`=1
676
-                         AND ROUND(`longitude`,6)=ROUND('" . sql_escape($longitude) . "',6)
677
-                         AND ROUND(`latitude`,6)=ROUND('" . sql_escape($latitude) . "',6)",
676
+                         AND ROUND(`longitude`,6)=ROUND('" . sql_escape($longitude)."',6)
677
+                         AND ROUND(`latitude`,6)=ROUND('" . sql_escape($latitude)."',6)",
678 678
                         null
679 679
                     );
680 680
                 if ($duplicate_wpoc) {
@@ -813,7 +813,7 @@  discard block
 block discarded – undo
813 813
                 } elseif ($publish == 'later') {
814 814
                     $sel_status = 5;
815 815
                     $activation_date =
816
-                        "'" . date(
816
+                        "'".date(
817 817
                             'Y-m-d H:i:s',
818 818
                             mktime(
819 819
                                 $activate_hour,
@@ -823,7 +823,7 @@  discard block
 block discarded – undo
823 823
                                 $activate_day,
824 824
                                 $activate_year
825 825
                             )
826
-                        ) . "'";
826
+                        )."'";
827 827
                 } elseif ($publish == 'notnow') {
828 828
                     $sel_status = 5;
829 829
                     $activation_date = 'NULL';
@@ -903,7 +903,7 @@  discard block
 block discarded – undo
903 903
                 );
904 904
 
905 905
                 // insert cache-attributes
906
-                for ($i = 0; $i < count($cache_attribs); $i ++) {
906
+                for ($i = 0; $i < count($cache_attribs); $i++) {
907 907
                     if (($cache_attribs[$i] + 0) > 0) {
908 908
                         sql(
909 909
                             "INSERT INTO `caches_attributes` (`cache_id`, `attrib_id`) VALUES ('&1', '&2')",
@@ -916,14 +916,14 @@  discard block
 block discarded – undo
916 916
                 // only if cache is published NOW or activate_date is in the past
917 917
                 if ($publish == 'now2' || ($publish == 'later' && mktime($activate_hour, 0, 0, $activate_month, $activate_day, $activate_year) <= $today)) {
918 918
                     //do event handling
919
-                    include_once(__DIR__ . '/lib/eventhandler.inc.php');
919
+                    include_once(__DIR__.'/lib/eventhandler.inc.php');
920 920
 
921 921
                     event_notify_new_cache($cache_id + 0);
922 922
                     event_new_cache($usr['userid'] + 0);
923 923
                 }
924 924
 
925 925
                 // redirection
926
-                tpl_redirect('viewcache.php?cacheid=' . urlencode($cache_id));
926
+                tpl_redirect('viewcache.php?cacheid='.urlencode($cache_id));
927 927
             } else {
928 928
                 tpl_set_var('general_message', $error_general);
929 929
             }
Please login to merge, or discard this patch.
htdocs/editcache.php 1 patch
Spacing   +55 added lines, -55 removed lines patch added patch discarded remove patch
@@ -13,9 +13,9 @@  discard block
 block discarded – undo
13 13
 use Oc\Libse\ChildWp\HandlerChildWp;
14 14
 use Oc\Libse\Coordinate\FormatterCoordinate;
15 15
 
16
-require_once __DIR__ . '/lib/consts.inc.php';
16
+require_once __DIR__.'/lib/consts.inc.php';
17 17
 $opt['gui'] = GUI_HTML;
18
-require_once __DIR__ . '/lib/common.inc.php';
18
+require_once __DIR__.'/lib/common.inc.php';
19 19
 
20 20
 function getWaypoints($cacheid)
21 21
 {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         $tplname = 'login';
85 85
 
86 86
         tpl_set_var('username', '');
87
-        tpl_set_var('target', 'editcache.php?cacheid=' . urlencode($cache_id));
87
+        tpl_set_var('target', 'editcache.php?cacheid='.urlencode($cache_id));
88 88
         tpl_set_var('message_start', "");
89 89
         tpl_set_var('message_end', "");
90 90
         tpl_set_var('message', $login_required);
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
             if ($cache_record['user_id'] == $usr['userid'] || $login->listingAdmin()) {
131 131
                 $tplname = 'editcache';
132 132
 
133
-                require $stylepath . '/editcache.inc.php';
133
+                require $stylepath.'/editcache.inc.php';
134 134
 
135 135
                 if ($cache_record['node'] != $oc_nodeid) {
136 136
                     tpl_errorMsg('editcache', $error_wrong_node);
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
                 }
139 139
 
140 140
                 //here we read all used information from the form if submitted, otherwise from DB
141
-                $cache_name = trim(isset($_POST['name']) ? $_POST['name'] : $cache_record['name']);  // Ocprop
141
+                $cache_name = trim(isset($_POST['name']) ? $_POST['name'] : $cache_record['name']); // Ocprop
142 142
                 $cache_type = isset($_POST['type']) ? $_POST['type'] : $cache_record['type'];
143 143
                 if (!isset($_POST['size'])) {
144 144
                     if ($cache_type == 4 || $cache_type == 5) {
@@ -152,15 +152,15 @@  discard block
 block discarded – undo
152 152
                 $cache_hidden_day = isset($_POST['hidden_day']) ? $_POST['hidden_day'] : date(
153 153
                     'd',
154 154
                     strtotime($cache_record['date_hidden'])
155
-                );  // Ocprop
155
+                ); // Ocprop
156 156
                 $cache_hidden_month = isset($_POST['hidden_month']) ? $_POST['hidden_month'] : date(
157 157
                     'm',
158 158
                     strtotime($cache_record['date_hidden'])
159
-                );  // Ocprop
159
+                ); // Ocprop
160 160
                 $cache_hidden_year = isset($_POST['hidden_year']) ? $_POST['hidden_year'] : date(
161 161
                     'Y',
162 162
                     strtotime($cache_record['date_hidden'])
163
-                );  // Ocprop
163
+                ); // Ocprop
164 164
 
165 165
                 if (is_null($cache_record['date_activate'])) {
166 166
                     $cache_activate_day = isset($_POST['activate_day']) ? $_POST['activate_day'] : date('d');
@@ -186,11 +186,11 @@  discard block
 block discarded – undo
186 186
                     );
187 187
                 }
188 188
 
189
-                $cache_difficulty = isset($_POST['difficulty']) ? $_POST['difficulty'] : $cache_record['difficulty'];  // Ocprop
190
-                $cache_terrain = isset($_POST['terrain']) ? $_POST['terrain'] : $cache_record['terrain'];  // Ocprop
191
-                $cache_country = isset($_POST['country']) ? $_POST['country'] : $cache_record['country'];  // Ocprop
189
+                $cache_difficulty = isset($_POST['difficulty']) ? $_POST['difficulty'] : $cache_record['difficulty']; // Ocprop
190
+                $cache_terrain = isset($_POST['terrain']) ? $_POST['terrain'] : $cache_record['terrain']; // Ocprop
191
+                $cache_country = isset($_POST['country']) ? $_POST['country'] : $cache_record['country']; // Ocprop
192 192
                 $show_all_countries = isset($_POST['show_all_countries']) ? $_POST['show_all_countries'] : 0;
193
-                $status = isset($_POST['status']) ? $_POST['status'] : $cache_record['status'];  // Ocprop
193
+                $status = isset($_POST['status']) ? $_POST['status'] : $cache_record['status']; // Ocprop
194 194
                 $status_old = $cache_record['status'];
195 195
                 $search_time = isset($_POST['search_time']) ? $_POST['search_time'] : $cache_record['search_time'];
196 196
                 $way_length = isset($_POST['way_length']) ? $_POST['way_length'] : $cache_record['way_length'];
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
 
251 251
                 $log_pw = isset($_POST['log_pw']) ? mb_substr($_POST['log_pw'], 0, 20) : $cache_record['logpw'];
252 252
                 // fix #4356: gc waypoints are frequently copy&pasted with leading spaces
253
-                $wp_gc = isset($_POST['wp_gc']) ? strtoupper(trim($_POST['wp_gc'])) : $cache_record['wp_gc'];  // Ocprop
253
+                $wp_gc = isset($_POST['wp_gc']) ? strtoupper(trim($_POST['wp_gc'])) : $cache_record['wp_gc']; // Ocprop
254 254
                 $showlists = isset($_POST['showlists']) ? 1 : $cache_record['show_cachelists'] + 0;
255 255
                 $protect_old_coords = isset($_POST['protect_old_coords']) ? 1 : $cache_record['protect_old_coords'] + 0;
256 256
 
@@ -262,12 +262,12 @@  discard block
 block discarded – undo
262 262
 
263 263
                 if (isset($_POST['latNS'])) {
264 264
                     //get coords from post-form
265
-                    $coords_latNS = $_POST['latNS'];  // Ocprop
266
-                    $coords_lonEW = $_POST['lonEW'];  // Ocprop
267
-                    $coords_lat_h = $_POST['lat_h'];  // Ocprop
268
-                    $coords_lon_h = $_POST['lon_h'];  // Ocprop
269
-                    $coords_lat_min = $_POST['lat_min'];  // Ocprop
270
-                    $coords_lon_min = $_POST['lon_min'];  // Ocprop
265
+                    $coords_latNS = $_POST['latNS']; // Ocprop
266
+                    $coords_lonEW = $_POST['lonEW']; // Ocprop
267
+                    $coords_lat_h = $_POST['lat_h']; // Ocprop
268
+                    $coords_lon_h = $_POST['lon_h']; // Ocprop
269
+                    $coords_lat_min = $_POST['lat_min']; // Ocprop
270
+                    $coords_lon_min = $_POST['lon_min']; // Ocprop
271 271
                 } else {
272 272
                     //get coords from DB
273 273
                     $coords_lon = $cache_record['longitude'];
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
                         } elseif ($publish == 'later') {
458 458
                             $status = 5;
459 459
                             $activation_date =
460
-                                "'" . sql_escape(
460
+                                "'".sql_escape(
461 461
                                     date(
462 462
                                         'Y-m-d H:i:s',
463 463
                                         mktime(
@@ -469,7 +469,7 @@  discard block
 block discarded – undo
469 469
                                             $cache_activate_year
470 470
                                         )
471 471
                                     )
472
-                                ) . "'";
472
+                                )."'";
473 473
                         } elseif ($publish == 'notnow') {
474 474
                             $status = 5;
475 475
                             $activation_date = 'NULL';
@@ -564,7 +564,7 @@  discard block
 block discarded – undo
564 564
                                     $logtype = 13;
565 565
                                     break;
566 566
                                 default:
567
-                                    $logtype = 0;  // ???
567
+                                    $logtype = 0; // ???
568 568
                             }
569 569
                             if ($logtype > 0) {
570 570
                                 sql(
@@ -585,25 +585,25 @@  discard block
 block discarded – undo
585 585
 
586 586
                         // update cache attributes
587 587
                         $attriblist = "999";
588
-                        for ($i = 0; $i < count($cache_attribs); $i ++) {
588
+                        for ($i = 0; $i < count($cache_attribs); $i++) {
589 589
                             if ($cache_attribs[$i] + 0 > 0) {
590 590
                                 sql(
591 591
                                     "INSERT IGNORE INTO `caches_attributes` (`cache_id`, `attrib_id`) VALUES('&1', '&2')",
592 592
                                     $cache_id,
593 593
                                     $cache_attribs[$i] + 0
594 594
                                 );
595
-                                $attriblist .= "," . ($cache_attribs[$i] + 0);
595
+                                $attriblist .= ",".($cache_attribs[$i] + 0);
596 596
                             }
597 597
                         }
598 598
 
599 599
                         sql(
600
-                            "DELETE FROM `caches_attributes` WHERE `cache_id`='&1' AND `attrib_id` NOT IN (" . $attriblist . ")",
600
+                            "DELETE FROM `caches_attributes` WHERE `cache_id`='&1' AND `attrib_id` NOT IN (".$attriblist.")",
601 601
                             // SQL injections in $attriblist prevented by adding 0 above
602 602
                             $cache_id
603 603
                         );
604 604
 
605 605
                         //call eventhandler
606
-                        require_once $opt['rootpath'] . 'lib/eventhandler.inc.php';
606
+                        require_once $opt['rootpath'].'lib/eventhandler.inc.php';
607 607
                         event_edit_cache($cache_id, $usr['userid'] + 0);
608 608
 
609 609
                         // if old status is not yet published and new status is published => notify-event
@@ -612,7 +612,7 @@  discard block
 block discarded – undo
612 612
                         }
613 613
 
614 614
                         //display cache-page
615
-                        tpl_redirect('viewcache.php?cacheid=' . urlencode($cache_id));
615
+                        tpl_redirect('viewcache.php?cacheid='.urlencode($cache_id));
616 616
                         // Ocprop: Location:\s*$viewcacheUrl\?cacheid=([0-9]+)
617 617
                         // (s.a. tpl_redirect() in common.inc.php
618 618
                         exit;
@@ -657,9 +657,9 @@  discard block
 block discarded – undo
657 657
                     $countriesoptions .=
658 658
                         '<option value="'
659 659
                         . htmlspecialchars($record['short'], ENT_COMPAT, 'UTF-8')
660
-                        . '"' . $sSelected . '>'
660
+                        . '"'.$sSelected.'>'
661 661
                         . htmlspecialchars($record['name'], ENT_COMPAT, 'UTF-8')
662
-                        . '</option>' . "\n";
662
+                        . '</option>'."\n";
663 663
                 }
664 664
                 tpl_set_var('countryoptions', $countriesoptions);
665 665
                 sql_free_result($rs);
@@ -716,7 +716,7 @@  discard block
 block discarded – undo
716 716
                         $line = mb_ereg_replace('{name}', escape_javascript($record['name']), $line);
717 717
                         $line = mb_ereg_replace('{color}', $rAttrGroup['color'], $line);
718 718
                         $group_line .= $line;
719
-                        $nLineAttrCount ++;
719
+                        $nLineAttrCount++;
720 720
 
721 721
                         $line = $cache_attrib_js;
722 722
                         $line = mb_ereg_replace('{id}', $record['id'], $line);
@@ -773,11 +773,11 @@  discard block
 block discarded – undo
773 773
 
774 774
                 //difficulty
775 775
                 $difficulty_options = '';
776
-                for ($i = 2; $i <= 10; $i ++) {
776
+                for ($i = 2; $i <= 10; $i++) {
777 777
                     if ($cache_difficulty == $i) {
778
-                        $difficulty_options .= '<option value="' . $i . '" selected="selected">' . $i / 2 . '</option>';
778
+                        $difficulty_options .= '<option value="'.$i.'" selected="selected">'.$i / 2.'</option>';
779 779
                     } else {
780
-                        $difficulty_options .= '<option value="' . $i . '">' . $i / 2 . '</option>';
780
+                        $difficulty_options .= '<option value="'.$i.'">'.$i / 2.'</option>';
781 781
                     }
782 782
                     $difficulty_options .= "\n";
783 783
                 }
@@ -785,11 +785,11 @@  discard block
 block discarded – undo
785 785
 
786 786
                 //build terrain options
787 787
                 $terrain_options = '';
788
-                for ($i = 2; $i <= 10; $i ++) {
788
+                for ($i = 2; $i <= 10; $i++) {
789 789
                     if ($cache_terrain == $i) {
790
-                        $terrain_options .= '<option value="' . $i . '" selected="selected">' . $i / 2 . '</option>';
790
+                        $terrain_options .= '<option value="'.$i.'" selected="selected">'.$i / 2.'</option>';
791 791
                     } else {
792
-                        $terrain_options .= '<option value="' . $i . '">' . $i / 2 . '</option>';
792
+                        $terrain_options .= '<option value="'.$i.'">'.$i / 2.'</option>';
793 793
                     }
794 794
                     $terrain_options .= "\n";
795 795
                 }
@@ -802,13 +802,13 @@  discard block
 block discarded – undo
802 802
                                                         FROM `cache_type`
803 803
                                              LEFT JOIN `sys_trans` ON `cache_type`.`trans_id`=`sys_trans`.`id`
804 804
                                              LEFT JOIN `sys_trans_text` ON `sys_trans`.`id`=`sys_trans_text`.`trans_id` AND
805
-                                                                 `sys_trans_text`.`lang`='" . sql_escape($locale) . "'
805
+                                                                 `sys_trans_text`.`lang`='" . sql_escape($locale)."'
806 806
                                                 ORDER BY `cache_type`.`ordinal` ASC"
807 807
                 );
808 808
                 while ($rType = sql_fetch_assoc($rsTypes)) {
809 809
                     $sSelected = ($rType['id'] == $cache_type) ? ' selected="selected"' : '';
810 810
                     $types .=
811
-                        '<option value="' . $rType['id'] . '"' . $sSelected . '>'
811
+                        '<option value="'.$rType['id'].'"'.$sSelected.'>'
812 812
                         . htmlspecialchars($rType['name'], ENT_COMPAT, 'UTF-8')
813 813
                         . '</option>';
814 814
                 }
@@ -822,13 +822,13 @@  discard block
 block discarded – undo
822 822
                                                         FROM `cache_size`
823 823
                                              LEFT JOIN `sys_trans` ON `cache_size`.`trans_id`=`sys_trans`.`id`
824 824
                                              LEFT JOIN `sys_trans_text` ON `sys_trans`.`id`=`sys_trans_text`.`trans_id` AND
825
-                                                                 `sys_trans_text`.`lang`='" . sql_escape($locale) . "'
825
+                                                                 `sys_trans_text`.`lang`='" . sql_escape($locale)."'
826 826
                                                 ORDER BY `cache_size`.`ordinal` ASC"
827 827
                 );
828 828
                 while ($rSize = sql_fetch_assoc($rsSizes)) {
829 829
                     $sSelected = ($rSize['id'] == $sel_size) ? ' selected="selected"' : '';
830 830
                     $sizes .=
831
-                        '<option value="' . $rSize['id'] . '"' . $sSelected . '>'
831
+                        '<option value="'.$rSize['id'].'"'.$sSelected.'>'
832 832
                         . htmlspecialchars($rSize['name'], ENT_COMPAT, 'UTF-8')
833 833
                         . '</option>';
834 834
                 }
@@ -842,12 +842,12 @@  discard block
 block discarded – undo
842 842
                 foreach ($desclangs as $desclang) {
843 843
                     if (count($desclangs) > 1) {
844 844
                         $remove_url =
845
-                            'removedesc.php?cacheid=' . urlencode($cache_id)
846
-                            . '&desclang=' . urlencode($desclang);
845
+                            'removedesc.php?cacheid='.urlencode($cache_id)
846
+                            . '&desclang='.urlencode($desclang);
847 847
                         $removedesc =
848 848
                             '&nbsp;[<a href="'
849 849
                             . htmlspecialchars($remove_url, ENT_COMPAT, 'UTF-8')
850
-                            . '">' . $remove . '</a>]';
850
+                            . '">'.$remove.'</a>]';
851 851
                     } else {
852 852
                         $removedesc = '';
853 853
                     }
@@ -863,13 +863,13 @@  discard block
 block discarded – undo
863 863
                     }
864 864
                     sql_free_result($resp);
865 865
 
866
-                    $edit_url = 'editdesc.php?cacheid=' . urlencode($cache_id) . '&desclang=' . urlencode($desclang);
866
+                    $edit_url = 'editdesc.php?cacheid='.urlencode($cache_id).'&desclang='.urlencode($desclang);
867 867
 
868 868
                     $cache_descs .=
869 869
                         '<tr><td colspan="2">'
870 870
                         . htmlspecialchars(db_LanguageFromShort($desclang), ENT_COMPAT, 'UTF-8')
871
-                        . ' [<a href="' . htmlspecialchars($edit_url, ENT_COMPAT, 'UTF-8')
872
-                        . '">' . $edit . '</a>]' . $removedesc . '</td></tr>';
871
+                        . ' [<a href="'.htmlspecialchars($edit_url, ENT_COMPAT, 'UTF-8')
872
+                        . '">'.$edit.'</a>]'.$removedesc.'</td></tr>';
873 873
                 }
874 874
                 tpl_set_var('cache_descs', $cache_descs);
875 875
 
@@ -889,10 +889,10 @@  discard block
 block discarded – undo
889 889
                                                              FROM `cache_status`
890 890
                                                   LEFT JOIN `sys_trans` ON `cache_status`.`trans_id`=`sys_trans`.`id`
891 891
                                                   LEFT JOIN `sys_trans_text` ON `sys_trans`.`id`=`sys_trans_text`.`trans_id` AND
892
-                                                                      `sys_trans_text`.`lang`='" . sql_escape($locale) . "'
892
+                                                                      `sys_trans_text`.`lang`='" . sql_escape($locale)."'
893 893
                                                           WHERE `cache_status`.`id` NOT IN (4, 5, 7) OR `cache_status`.`id`='" . sql_escape(
894 894
                             $status_old + 0
895
-                        ) . "'
895
+                        )."'
896 896
                                                      ORDER BY `cache_status`.`id` ASC"
897 897
                     );
898 898
                     while ($rStatus = sql_fetch_assoc($rsStatus)) {
@@ -901,7 +901,7 @@  discard block
 block discarded – undo
901 901
                             $statusoptions .=
902 902
                                 '<option value="'
903 903
                                 . htmlspecialchars($rStatus['id'], ENT_COMPAT, 'UTF-8')
904
-                                . '"' . $sSelected . '>'
904
+                                . '"'.$sSelected.'>'
905 905
                                 . htmlspecialchars($rStatus['name'], ENT_COMPAT, 'UTF-8')
906 906
                                 . '</option>';
907 907
                         }
@@ -940,11 +940,11 @@  discard block
 block discarded – undo
940 940
                     $tmp = mb_ereg_replace('{publish_notnow_checked}', ($publish == 'notnow') ? 'checked' : '', $tmp);
941 941
 
942 942
                     $activation_hours = '';
943
-                    for ($i = 0; $i <= 23; $i ++) {
943
+                    for ($i = 0; $i <= 23; $i++) {
944 944
                         if ($cache_activate_hour == $i) {
945
-                            $activation_hours .= '<option value="' . $i . '" selected="selected">' . $i . '</option>';
945
+                            $activation_hours .= '<option value="'.$i.'" selected="selected">'.$i.'</option>';
946 946
                         } else {
947
-                            $activation_hours .= '<option value="' . $i . '">' . $i . '</option>';
947
+                            $activation_hours .= '<option value="'.$i.'">'.$i.'</option>';
948 948
                         }
949 949
                         $activation_hours .= "\n";
950 950
                     }
@@ -968,7 +968,7 @@  discard block
 block discarded – undo
968 968
                         $cache_id
969 969
                     );
970 970
 
971
-                    for ($i = 0; $i < mysql_num_rows($rspictures); $i ++) {
971
+                    for ($i = 0; $i < mysql_num_rows($rspictures); $i++) {
972 972
                         $tmpline = ($i == 0 ? $pictureline0 : $pictureline);
973 973
                         $pic_record = sql_fetch_array($rspictures);
974 974
 
@@ -1043,7 +1043,7 @@  discard block
 block discarded – undo
1043 1043
                 $st_hours = floor($search_time);
1044 1044
                 $st_minutes = sprintf('%02.0F', ($search_time - $st_hours) * 60);
1045 1045
 
1046
-                tpl_set_var('search_time', $st_hours . ':' . $st_minutes);
1046
+                tpl_set_var('search_time', $st_hours.':'.$st_minutes);
1047 1047
 
1048 1048
                 tpl_set_var('way_length', $way_length);
1049 1049
                 tpl_set_var('log_pw', htmlspecialchars($log_pw, ENT_COMPAT, 'UTF-8'));
@@ -1051,7 +1051,7 @@  discard block
 block discarded – undo
1051 1051
                 tpl_set_var('showlists_checked', $showlists ? 'checked="checked"' : '');
1052 1052
                 tpl_set_var('protectcoords_checked', $protect_old_coords ? 'checked="checked"' : '');
1053 1053
 
1054
-                tpl_set_var('reset', $reset);  // obsolete
1054
+                tpl_set_var('reset', $reset); // obsolete
1055 1055
                 tpl_set_var('submit', $submit);
1056 1056
             } else {
1057 1057
                 //TODO: not the owner
Please login to merge, or discard this patch.
htdocs/config2/settings-dist-common.inc.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -15,11 +15,11 @@  discard block
 block discarded – undo
15 15
  *   bin/dbsv-update.php will then migrate the tables' charset.
16 16
  */
17 17
 $opt['charset']['iconv'] = 'UTF-8'; // 'ISO-8859-1'; // use iconv compatible charset-name
18
-$opt['charset']['mysql'] = 'utf8';     // use mysql compatible charset-name
18
+$opt['charset']['mysql'] = 'utf8'; // use mysql compatible charset-name
19 19
 
20 20
 // handling of SQL and PHP errors
21 21
 $opt['db']['error']['display'] = false;
22
-$opt['db']['error']['mail'] = 'root';  // set '' to disable
22
+$opt['db']['error']['mail'] = 'root'; // set '' to disable
23 23
 
24 24
 // page title
25 25
 $opt['page']['title'] = 'OPENCACHING';
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
  * Additionally, the cookie domain (different vor lib1 and lib2) can be overwritten.
58 58
  * See examples for overriding in settings-sample.inc.php.
59 59
  */
60
-$opt['page']['meta']['keywords'] = 'Geocaching, Geocache, Cache, Schatzsuche, GPS, kostenlos, GPX, Koordinaten, Hobby, Natur';  // 5-10 keywords are recommended
60
+$opt['page']['meta']['keywords'] = 'Geocaching, Geocache, Cache, Schatzsuche, GPS, kostenlos, GPX, Koordinaten, Hobby, Natur'; // 5-10 keywords are recommended
61 61
 // see http://forum.opencaching.de/index.php?topic=3065.0
62 62
 // and http://forum.opencaching.de/index.php?topic=3065.0 regarding description
63 63
 $opt['page']['meta']['description'] = 'Opencaching.de ist das freie Portal für Geocaching, ein Schatzsuche-Spiel. Mittels GPS-Koordinaten sind Behälter oder Objekte zu finden.';
@@ -98,12 +98,12 @@  discard block
 block discarded – undo
98 98
 // see also setting in lib/settings.inc.php!
99 99
 $opt['logic']['admin']['team_comments_only_for_reports'] = true;
100 100
 $opt['logic']['admin']['enable_listing_admins'] = false;
101
-$opt['logic']['admin']['listingadmin_notification'] = '';  // Email address(es), comma separated
101
+$opt['logic']['admin']['listingadmin_notification'] = ''; // Email address(es), comma separated
102 102
 
103 103
 /*
104 104
  * html purifier
105 105
  */
106
-$opt['html_purifier']['cache_path'] = dirname(__FILE__) . '/../cache2/html_purifier/';
106
+$opt['html_purifier']['cache_path'] = dirname(__FILE__).'/../cache2/html_purifier/';
107 107
 
108 108
 /*
109 109
  * CMS links for external pages
@@ -178,9 +178,9 @@  discard block
 block discarded – undo
178 178
         $primary_httpsdefault = $opt['page']['https']['is_default'];
179 179
     }
180 180
     if ($primary_httpsdefault) {
181
-        $opt['page']['default_primary_url'] = 'https' . strstr($primary_site_url, '://');
181
+        $opt['page']['default_primary_url'] = 'https'.strstr($primary_site_url, '://');
182 182
     } else {
183
-        $opt['page']['default_primary_url'] = 'http' . strstr($primary_site_url, '://');
183
+        $opt['page']['default_primary_url'] = 'http'.strstr($primary_site_url, '://');
184 184
     }
185 185
 
186 186
     // 2. create settings for the current domain
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
     if (isset($opt['domain'][$current_domain]['url'])) {
192 192
         $current_site_url = $opt['domain'][$current_domain]['url'];
193 193
     } else {
194
-        $current_site_url = 'x://' . $current_domain . parse_url($primary_site_url, PHP_URL_PATH);
194
+        $current_site_url = 'x://'.$current_domain.parse_url($primary_site_url, PHP_URL_PATH);
195 195
     }
196 196
     if (substr($current_site_url, - 1, 1) != '/') {
197 197
         $current_site_url .= '/';
@@ -203,8 +203,8 @@  discard block
 block discarded – undo
203 203
     }
204 204
 
205 205
     $adr = strstr($current_site_url, '://');
206
-    $opt['page']['absolute_http_url'] = 'http' . $adr;
207
-    $opt['page']['absolute_https_url'] = 'https' . $adr;
206
+    $opt['page']['absolute_http_url'] = 'http'.$adr;
207
+    $opt['page']['absolute_https_url'] = 'https'.$adr;
208 208
     $opt['page']['https']['active'] = (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off');
209 209
 
210 210
     if ($opt['page']['https']['active']) {
@@ -235,19 +235,19 @@  discard block
 block discarded – undo
235 235
         $opt['page']['default_primary_shortlink_url'] = false;
236 236
     } else {
237 237
         if ($primary_httpsdefault) {
238
-            $opt['page']['default_primary_shortlink_url'] = 'https://' . $primary_shortlink_domain . '/';
238
+            $opt['page']['default_primary_shortlink_url'] = 'https://'.$primary_shortlink_domain.'/';
239 239
         } else {
240
-            $opt['page']['default_primary_shortlink_url'] = 'http://' . $primary_shortlink_domain . '/';
240
+            $opt['page']['default_primary_shortlink_url'] = 'http://'.$primary_shortlink_domain.'/';
241 241
         }
242 242
 
243 243
         if (isset($opt['domain'][$current_domain]['shortlink_domain']) && $opt['domain'][$current_domain]['shortlink_domain']) {
244
-            $opt['page']['shortlink_url'] = $opt['page']['protocol'] . '://' . $opt['domain'][$current_domain]['shortlink_domain'] . '/';
245
-            $opt['page']['default_shortlink_url'] = $opt['page']['default_protocol'] . '://' . $opt['domain'][$current_domain]['shortlink_domain'] . '/';
244
+            $opt['page']['shortlink_url'] = $opt['page']['protocol'].'://'.$opt['domain'][$current_domain]['shortlink_domain'].'/';
245
+            $opt['page']['default_shortlink_url'] = $opt['page']['default_protocol'].'://'.$opt['domain'][$current_domain]['shortlink_domain'].'/';
246 246
         } else {
247 247
             if ($current_domain == $primary_domain) {
248 248
                 $opt['page']['default_shortlink_url'] = $opt['page']['default_primary_shortlink_url'];
249 249
                 $opt['page']['shortlink_url'] =
250
-                    $opt['page']['protocol'] . strstr($opt['page']['default_shortlink_url'], '://');
250
+                    $opt['page']['protocol'].strstr($opt['page']['default_shortlink_url'], '://');
251 251
             } else {
252 252
                 $opt['page']['shortlink_url'] = false;
253 253
                 $opt['page']['default_shortlink_url'] = false;
@@ -258,16 +258,16 @@  discard block
 block discarded – undo
258 258
     // 4. set location of uploaded images
259 259
 
260 260
     if (!isset($opt['logic']['pictures']['dir'])) {
261
-        $opt['logic']['pictures']['dir'] = dirname(__FILE__) . '/../images/uploads';
261
+        $opt['logic']['pictures']['dir'] = dirname(__FILE__).'/../images/uploads';
262 262
     }  // Ocprop, OKAPI !
263 263
     if (!isset($opt['logic']['pictures']['url'])) {
264
-        $opt['logic']['pictures']['url'] = $opt['page']['default_primary_url'] . 'images/uploads';
264
+        $opt['logic']['pictures']['url'] = $opt['page']['default_primary_url'].'images/uploads';
265 265
     }
266 266
     if (!isset($opt['logic']['pictures']['thumb_dir'])) {
267
-        $opt['logic']['pictures']['thumb_dir'] = $opt['logic']['pictures']['dir'] . '/thumbs';
267
+        $opt['logic']['pictures']['thumb_dir'] = $opt['logic']['pictures']['dir'].'/thumbs';
268 268
     }
269 269
     if (!isset($opt['logic']['pictures']['thumb_url'])) {
270
-        $opt['logic']['pictures']['thumb_url'] = $opt['logic']['pictures']['url'] . '/thumbs';
270
+        $opt['logic']['pictures']['thumb_url'] = $opt['logic']['pictures']['url'].'/thumbs';
271 271
     }
272 272
 }
273 273
 
Please login to merge, or discard this patch.
htdocs/map2.php 1 patch
Spacing   +60 added lines, -60 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 
10 10
 $build_map_towns_menu = true;
11 11
 
12
-require __DIR__ . '/lib2/web.inc.php';
12
+require __DIR__.'/lib2/web.inc.php';
13 13
 
14 14
 /* because the map does access some private info like
15 15
  * ignored caches, we need to verify the login data
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
                        WHERE option_id=6 AND user_id='&1'", true, $login->userid))
68 68
 ) {
69 69
     $fullscreen = true;
70
-    $tpl->popup = true;        // disables page header and -frame
70
+    $tpl->popup = true; // disables page header and -frame
71 71
     $tpl->popupmargin = false;
72 72
 } else {
73 73
     $fullscreen = false;
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     $tpl->error($translate->t('There is no google maps key registered for this domain.', '', '', 0));
134 134
 }
135 135
 
136
-$tpl->add_header_javascript($opt['page']['protocol'] . '://maps.googleapis.com/maps/api/js?sensor=false&key=' . urlencode($sGMKey) . '&language=' . strtolower($opt['template']['locale']));
136
+$tpl->add_header_javascript($opt['page']['protocol'].'://maps.googleapis.com/maps/api/js?sensor=false&key='.urlencode($sGMKey).'&language='.strtolower($opt['template']['locale']));
137 137
 // https is supported by google, but may make problems in some environments,
138 138
 // e.g. does not work with MSIE 7 on WinXP
139 139
 $tpl->add_header_javascript('resource2/misc/map/dragzoom_packed.js');
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
     global $login;
280 280
 
281 281
     $rsCache = sql_slave(
282
-        "SELECT " . geomath::getSqlDistanceFormula($nLon, $nLat, $nDistance) . " AS `distance`,
282
+        "SELECT ".geomath::getSqlDistanceFormula($nLon, $nLat, $nDistance)." AS `distance`,
283 283
                                   `caches`.`wp_oc`
284 284
                              FROM `caches`
285 285
                        INNER JOIN `cache_status` ON `caches`.`status`=`cache_status`.`id`
@@ -389,42 +389,42 @@  discard block
 block discarded – undo
389 389
     $wphandler = new HandlerChildWp();
390 390
     $waypoints = $wphandler->getChildWps($rCache['cache_id'], true);
391 391
 
392
-    echo '<caches>' . "\n";
392
+    echo '<caches>'."\n";
393 393
     echo '  <cache ';
394
-    echo 'name="' . xmlentities($rCache['name']) . '" ';
395
-    echo 'wpoc="' . xmlentities($rCache['wp_oc']) . '" ';
396
-    echo 'coords="' . $rCache['longitude'] . ',' . $rCache['latitude'] . '" ';
397
-    echo 'inactive="' . xmlentities($rCache['inactive']) . '" ';
398
-    echo 'status_text="' . xmlentities($rCache['statustext']) . '" ';
399
-    echo 'type_id="' . xmlentities($rCache['type_id']) . '" ';
400
-    echo 'type_text="' . xmlentities($rCache['type_text']) . '" ';
401
-    echo 'size="' . xmlentities($rCache['size']) . '" ';
402
-    echo 'difficulty="' . xmlentities($rCache['difficulty'] / 2) . '" ';
403
-    echo 'terrain="' . xmlentities($rCache['terrain'] / 2) . '" ';
404
-    echo 'listed_since="' . xmlentities(strftime($opt['locale'][$opt['template']['locale']]['format']['date'], strtotime($rCache['date_created']))) . '" ';
405
-    echo 'is_publishdate="' . xmlentities($rCache['is_publishdate']) . '" ';
406
-    echo 'toprating="' . xmlentities($rCache['toprating']) . '" ';
407
-    echo 'geokreties="' . xmlentities($nGeokretyCount) . '" ';
408
-    echo 'found="' . xmlentities(($nFoundCount > 0) ? 1 : 0) . '" ';
409
-    echo 'notfound="' . xmlentities(($nNotFoundCount > 0) ? 1 : 0) . '" ';
410
-    echo 'attended="' . xmlentities(($nAttendedCount > 0) ? 1 : 0) . '" ';
411
-    echo 'oconly="' . xmlentities($rCache['oconly']) . '" ';
412
-    echo 'owner="' . xmlentities($rCache['owner']) . '" ';
413
-    echo 'username="' . xmlentities($rCache['username']) . '" ';
414
-    echo 'userid="' . xmlentities($rCache['user_id']) . '" ';
415
-    echo 'picurl="' . xmlentities($rCache['picurl']) . '" ';
416
-    echo 'pictitle="' . xmlentities(trim($rCache['pictitle'])) . '" >\n';
394
+    echo 'name="'.xmlentities($rCache['name']).'" ';
395
+    echo 'wpoc="'.xmlentities($rCache['wp_oc']).'" ';
396
+    echo 'coords="'.$rCache['longitude'].','.$rCache['latitude'].'" ';
397
+    echo 'inactive="'.xmlentities($rCache['inactive']).'" ';
398
+    echo 'status_text="'.xmlentities($rCache['statustext']).'" ';
399
+    echo 'type_id="'.xmlentities($rCache['type_id']).'" ';
400
+    echo 'type_text="'.xmlentities($rCache['type_text']).'" ';
401
+    echo 'size="'.xmlentities($rCache['size']).'" ';
402
+    echo 'difficulty="'.xmlentities($rCache['difficulty'] / 2).'" ';
403
+    echo 'terrain="'.xmlentities($rCache['terrain'] / 2).'" ';
404
+    echo 'listed_since="'.xmlentities(strftime($opt['locale'][$opt['template']['locale']]['format']['date'], strtotime($rCache['date_created']))).'" ';
405
+    echo 'is_publishdate="'.xmlentities($rCache['is_publishdate']).'" ';
406
+    echo 'toprating="'.xmlentities($rCache['toprating']).'" ';
407
+    echo 'geokreties="'.xmlentities($nGeokretyCount).'" ';
408
+    echo 'found="'.xmlentities(($nFoundCount > 0) ? 1 : 0).'" ';
409
+    echo 'notfound="'.xmlentities(($nNotFoundCount > 0) ? 1 : 0).'" ';
410
+    echo 'attended="'.xmlentities(($nAttendedCount > 0) ? 1 : 0).'" ';
411
+    echo 'oconly="'.xmlentities($rCache['oconly']).'" ';
412
+    echo 'owner="'.xmlentities($rCache['owner']).'" ';
413
+    echo 'username="'.xmlentities($rCache['username']).'" ';
414
+    echo 'userid="'.xmlentities($rCache['user_id']).'" ';
415
+    echo 'picurl="'.xmlentities($rCache['picurl']).'" ';
416
+    echo 'pictitle="'.xmlentities(trim($rCache['pictitle'])).'" >\n';
417 417
 
418 418
     foreach ($waypoints as $waypoint) {
419 419
         echo '    <wpt ';
420
-        echo 'typeid="' . xmlentities($waypoint['type']) . '" ';
421
-        echo 'typename="' . xmlentities($waypoint['name']) . '" ';
422
-        echo 'typepreposition="' . xmlentities($waypoint['preposition']) . '" ';
423
-        echo 'image="' . xmlentities($waypoint['image']) . '" ';
420
+        echo 'typeid="'.xmlentities($waypoint['type']).'" ';
421
+        echo 'typename="'.xmlentities($waypoint['name']).'" ';
422
+        echo 'typepreposition="'.xmlentities($waypoint['preposition']).'" ';
423
+        echo 'image="'.xmlentities($waypoint['image']).'" ';
424 424
         echo 'imagewidth="38" imageheight="38" ';
425
-        echo 'latitude="' . xmlentities($waypoint['latitude']) . '" ';
426
-        echo 'longitude="' . xmlentities($waypoint['longitude']) . '" ';
427
-        echo 'description="' . xmlentities(mb_ereg_replace('\r\n', '<br />', htmlentities(trim($waypoint['description']), ENT_NOQUOTES, 'UTF-8'))) . '" />\n';
425
+        echo 'latitude="'.xmlentities($waypoint['latitude']).'" ';
426
+        echo 'longitude="'.xmlentities($waypoint['longitude']).'" ';
427
+        echo 'description="'.xmlentities(mb_ereg_replace('\r\n', '<br />', htmlentities(trim($waypoint['description']), ENT_NOQUOTES, 'UTF-8'))).'" />\n';
428 428
     }
429 429
 
430 430
     echo '  </cache>\n';
@@ -438,9 +438,9 @@  discard block
 block discarded – undo
438 438
 {
439 439
     global $login, $opt;
440 440
 
441
-    echo '<caches>' . "\n";
441
+    echo '<caches>'."\n";
442 442
     $rs = sql_slave(
443
-        "SELECT " . geomath::getSqlDistanceFormula($nLon, $nLat, 0) . " AS `distance`,
443
+        "SELECT ".geomath::getSqlDistanceFormula($nLon, $nLat, 0)." AS `distance`,
444 444
                           `caches`.`name`, `caches`.`wp_oc`
445 445
                      FROM `map2_data`
446 446
                INNER JOIN `caches` ON `map2_data`.`cache_id`=`caches`.`cache_id`
@@ -449,30 +449,30 @@  discard block
 block discarded – undo
449 449
                       AND (`cache_status`.`allow_user_view`=1 OR `caches`.`user_id`='&3')
450 450
                       AND `map2_data`.`result_id`='&2'
451 451
                            ORDER BY `distance` ASC LIMIT 30",
452
-        '%' . $sName . '%',
452
+        '%'.$sName.'%',
453 453
         $nResultId,
454 454
         $login->userid
455 455
     );
456 456
     $caches_found = 0;
457 457
     while ($r = sql_fetch_assoc($rs)) {
458
-        echo '<cache name="' . xmlentities($r['name']) . '" wpoc="' . xmlentities($r['wp_oc']) . '" />' . "\n";
459
-        ++ $caches_found;
458
+        echo '<cache name="'.xmlentities($r['name']).'" wpoc="'.xmlentities($r['wp_oc']).'" />'."\n";
459
+        ++$caches_found;
460 460
     }
461 461
     sql_free_result($rs);
462 462
 
463 463
     if (!$caches_found && preg_match('/^[^\s[:punct:]]{2,}\.[^\s[:punct:]]{2,}\.[^\s[:punct:]]{2,}$/', $sName)) {
464
-        $result = @file_get_contents('http://api.what3words.com/w3w?key=' . $opt['lib']['w3w']['apikey']
465
-            . '&string=' . urlencode($sName));
464
+        $result = @file_get_contents('http://api.what3words.com/w3w?key='.$opt['lib']['w3w']['apikey']
465
+            . '&string='.urlencode($sName));
466 466
         if ($result) {
467 467
             $json = json_decode($result, true);
468 468
             if (!is_null($json['words']) && !is_null($json['position']) && count($json['position']) == 2) {
469
-                echo '<coord name="' . xmlentities(implode('.', $json['words'])) .
470
-                    '" latitude="' . xmlentities($json["position"][0]) .
471
-                    '" longitude="' . xmlentities($json["position"][1]) . '" />' . "\n";
469
+                echo '<coord name="'.xmlentities(implode('.', $json['words'])).
470
+                    '" latitude="'.xmlentities($json["position"][0]).
471
+                    '" longitude="'.xmlentities($json["position"][1]).'" />'."\n";
472 472
             }
473 473
         }
474 474
     }
475
-    echo '</caches>' . "\n";
475
+    echo '</caches>'."\n";
476 476
 
477 477
     exit;
478 478
 }
@@ -495,7 +495,7 @@  discard block
 block discarded – undo
495 495
         "SELECT `slave_id`
496 496
         FROM `map2_result`
497 497
         WHERE `result_id`='&1' AND DATE_ADD(`date_created`, INTERVAL '&2' SECOND)>NOW()",
498
-        - 2,
498
+        -2,
499 499
         $nResultId,
500 500
         $opt['map']['maxcacheage']
501 501
     );
@@ -561,8 +561,8 @@  discard block
 block discarded – undo
561 561
     $bMaxRecordReached = ($nRecordCount > $maxrecords);
562 562
 
563 563
     // output data
564
-    echo '<searchresult count="' . xmlentities($nRecordCount) . '" available="1"' .
565
-        ' maxrecordreached="' . ($bMaxRecordReached ? '1' : '0') . '">' . "\n";
564
+    echo '<searchresult count="'.xmlentities($nRecordCount).'" available="1"'.
565
+        ' maxrecordreached="'.($bMaxRecordReached ? '1' : '0').'">'."\n";
566 566
 
567 567
     if (!$bMaxRecordReached) {
568 568
         $namequery = ($cachenames ? ", `caches`.`name` AS `cachename`" : "");
@@ -577,7 +577,7 @@  discard block
 block discarded – undo
577 577
                             IF(`found_logs`.`id` IS NULL, 0, 1) AS `found`,
578 578
                             IF(`found_logs`.`id` IS NULL AND `notfound_logs`.`id` IS NOT NULL, 1, 0) AS `notfound`,
579 579
                             IF(`caches_attributes`.`attrib_id` IS NULL, 0, 1) AS `oconly`" .
580
-            $namequery . "
580
+            $namequery."
581 581
                        FROM `map2_data`
582 582
                  INNER JOIN `caches` ON `map2_data`.`cache_id`=`caches`.`cache_id`
583 583
                  INNER JOIN `user` ON `user`.`user_id`=`caches`.`user_id`
@@ -624,19 +624,19 @@  discard block
 block discarded – undo
624 624
                 echo
625 625
                     '<c d="'
626 626
                     . xmlentities(
627
-                        $r['wp_oc'] . '/' . round($r['longitude'], 5) . '/' .
628
-                        round($r['latitude'], 5) . '/' . $r['type'] . '/' . $flags
629
-                    ) . '"'
630
-                    . (isset($r['cachename']) ? ' n="' . xmlentities($r['cachename']) . '"' : '')
627
+                        $r['wp_oc'].'/'.round($r['longitude'], 5).'/'.
628
+                        round($r['latitude'], 5).'/'.$r['type'].'/'.$flags
629
+                    ).'"'
630
+                    . (isset($r['cachename']) ? ' n="'.xmlentities($r['cachename']).'"' : '')
631 631
                     . ' />';
632 632
             } else {
633 633
                 echo
634
-                    '<cache wp="' . xmlentities($r['wp_oc']) . '"' .
635
-                    ' lon="' . xmlentities(round($r['longitude'], 5)) . '"' .
636
-                    ' lat="' . xmlentities(round($r['latitude'], 5)) . '"' .
637
-                    ' type="' . xmlentities($r['type']) . '"' .
638
-                    (isset($r['cachename']) ? ' n="' . xmlentities($r['cachename']) . '"' : '') .
639
-                    ' f="' . xmlentities($flags) . '" />' . "\n";
634
+                    '<cache wp="'.xmlentities($r['wp_oc']).'"'.
635
+                    ' lon="'.xmlentities(round($r['longitude'], 5)).'"'.
636
+                    ' lat="'.xmlentities(round($r['latitude'], 5)).'"'.
637
+                    ' type="'.xmlentities($r['type']).'"'.
638
+                    (isset($r['cachename']) ? ' n="'.xmlentities($r['cachename']).'"' : '').
639
+                    ' f="'.xmlentities($flags).'" />'."\n";
640 640
             }
641 641
         }
642 642
         sql_free_result($rs);
Please login to merge, or discard this patch.
local/ocxml11client/index.php 1 patch
Spacing   +56 added lines, -56 removed lines patch added patch discarded remove patch
@@ -27,12 +27,12 @@  discard block
 block discarded – undo
27 27
  * - Test mit aktuellem OC.de-Stand
28 28
  ***************************************************************************/
29 29
 
30
-$rootpath = __DIR__ . '/../../htdocs/';
30
+$rootpath = __DIR__.'/../../htdocs/';
31 31
 
32 32
 // chdir to proper directory (needed for cronjobs)
33 33
 chdir(substr(realpath($_SERVER['PHP_SELF']), 0, strrpos(realpath($_SERVER['PHP_SELF']), '/')));
34 34
 
35
-require_once $rootpath . 'lib/clicompatbase.inc.php';
35
+require_once $rootpath.'lib/clicompatbase.inc.php';
36 36
 require_once 'xml2array.inc.php';
37 37
 require_once 'settings.php';
38 38
 
@@ -67,16 +67,16 @@  discard block
 block discarded – undo
67 67
     $nFileNr = 0;
68 68
     $rs = sql('SELECT `id`, `url` FROM `pictures` WHERE `local`=0');
69 69
     while ($r = sql_fetch_array($rs)) {
70
-        $nFileNr ++;
70
+        $nFileNr++;
71 71
         $fileparts = mb_split('/', $r['url']);
72 72
         $filename = $fileparts[count($fileparts) - 1];
73 73
 
74
-        echo 'Downloading file ' . $nFileNr . ' of ' . $rCount['c'] . ': ' . $filename . "\n";
74
+        echo 'Downloading file '.$nFileNr.' of '.$rCount['c'].': '.$filename."\n";
75 75
 
76 76
         $success = true;
77
-        if (!file_exists($opt['pictures']['directory'] . $filename)) {
78
-            if (!@copy($r['url'], $opt['pictures']['directory'] . $filename)) {
79
-                echo 'error: Download nicht erfolgreich' . "\n";
77
+        if (!file_exists($opt['pictures']['directory'].$filename)) {
78
+            if (!@copy($r['url'], $opt['pictures']['directory'].$filename)) {
79
+                echo 'error: Download nicht erfolgreich'."\n";
80 80
                 $success = false;
81 81
             }
82 82
         }
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
         if ($success == true) {
85 85
             sql(
86 86
                 "UPDATE `pictures` SET `local`=1, `url`='&1' WHERE `id`='&2'",
87
-                $opt['pictures']['url'] . $filename,
87
+                $opt['pictures']['url'].$filename,
88 88
                 $r['id']
89 89
             );
90 90
         }
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
 
197 197
     if ($opt['session'] == 1) {
198 198
         // records abfragen
199
-        $sessionfile = $opt['tmpdir'] . 'session.xml';
199
+        $sessionfile = $opt['tmpdir'].'session.xml';
200 200
         if (file_exists($sessionfile)) {
201 201
             unlink($sessionfile);
202 202
         }
@@ -215,21 +215,21 @@  discard block
 block discarded – undo
215 215
         $recordscount += $session['OCXMLSESSION']['RECORDS']['PICTURE'];
216 216
         $recordscount += $session['OCXMLSESSION']['RECORDS']['REMOVEOBJECT'];
217 217
 
218
-        echo 'Abruf seit ' . $lastUpdate . "\n";
218
+        echo 'Abruf seit '.$lastUpdate."\n";
219 219
         echo "------------------------\n";
220
-        echo 'Session-Id: ' . $sessionid . "\n";
221
-        echo 'User: ' . $session['OCXMLSESSION']['RECORDS']['USER'] . "\n";
222
-        echo 'Cache: ' . $session['OCXMLSESSION']['RECORDS']['CACHE'] . "\n";
223
-        echo 'Cachdesc: ' . $session['OCXMLSESSION']['RECORDS']['CACHEDESC'] . "\n";
224
-        echo 'Cachelog: ' . $session['OCXMLSESSION']['RECORDS']['CACHELOG'] . "\n";
225
-        echo 'Picture: ' . $session['OCXMLSESSION']['RECORDS']['PICTURE'] . "\n";
226
-        echo 'Removedobject: ' . $session['OCXMLSESSION']['RECORDS']['REMOVEOBJECT'] . "\n";
220
+        echo 'Session-Id: '.$sessionid."\n";
221
+        echo 'User: '.$session['OCXMLSESSION']['RECORDS']['USER']."\n";
222
+        echo 'Cache: '.$session['OCXMLSESSION']['RECORDS']['CACHE']."\n";
223
+        echo 'Cachdesc: '.$session['OCXMLSESSION']['RECORDS']['CACHEDESC']."\n";
224
+        echo 'Cachelog: '.$session['OCXMLSESSION']['RECORDS']['CACHELOG']."\n";
225
+        echo 'Picture: '.$session['OCXMLSESSION']['RECORDS']['PICTURE']."\n";
226
+        echo 'Removedobject: '.$session['OCXMLSESSION']['RECORDS']['REMOVEOBJECT']."\n";
227 227
         echo "------------------------\n";
228
-        echo 'Summe: ' . $recordscount . "\n";
228
+        echo 'Summe: '.$recordscount."\n";
229 229
 
230 230
         $filescount = ($recordscount + (500 - $recordscount % 500)) / 500;
231 231
 
232
-        echo 'Anzahl der Pakete: ' . $filescount . "\n";
232
+        echo 'Anzahl der Pakete: '.$filescount."\n";
233 233
         echo "\n";
234 234
 
235 235
         if ($recordscount == 0) {
@@ -237,20 +237,20 @@  discard block
 block discarded – undo
237 237
             exit;
238 238
         }
239 239
 
240
-        for ($i = 1; $i <= $filescount; $i ++) {
241
-            echo "Download Paket: " . $i . ' von ' . $filescount . "\n";
240
+        for ($i = 1; $i <= $filescount; $i++) {
241
+            echo "Download Paket: ".$i.' von '.$filescount."\n";
242 242
 
243 243
             $fileurl = $opt['url_getsession'];
244 244
             $fileurl = mb_ereg_replace('{sessionid}', $sessionid, $fileurl);
245 245
             $fileurl = mb_ereg_replace('{file}', $i, $fileurl);
246 246
             $fileurl = mb_ereg_replace('{zip}', $opt['zip'], $fileurl);
247
-            $target = $opt['tmpdir'] . $sessionid . '-' . sprintf('%04d', $i) . $fileext;
247
+            $target = $opt['tmpdir'].$sessionid.'-'.sprintf('%04d', $i).$fileext;
248 248
 
249 249
             copy($fileurl, $target);
250 250
         }
251 251
     } else {
252
-        echo 'Download ...' . "\n";
253
-        $target = $opt['tmpdir'] . date('YmdHis') . $fileext;
252
+        echo 'Download ...'."\n";
253
+        $target = $opt['tmpdir'].date('YmdHis').$fileext;
254 254
         copy($url, $target);
255 255
     }
256 256
 }
@@ -262,24 +262,24 @@  discard block
 block discarded – undo
262 262
     // alle zips entpacken
263 263
     $hDir = opendir($opt['tmpdir']);
264 264
     while (false !== ($file = readdir($hDir))) {
265
-        if (is_file($opt['tmpdir'] . $file)) {
265
+        if (is_file($opt['tmpdir'].$file)) {
266 266
             $bCopy = false;
267 267
             if (mb_substr($file, mb_strrpos($file, '.')) == '.zip') {
268
-                echo 'Unzipping file ' . $file . "\n";
268
+                echo 'Unzipping file '.$file."\n";
269 269
                 system(
270
-                    $opt['unzip'] . ' --type=zip --src="' . $opt['rel_tmpdir'] . '/' . $file . '" --dst="' . $opt['rel_tmpdir'] . '"'
270
+                    $opt['unzip'].' --type=zip --src="'.$opt['rel_tmpdir'].'/'.$file.'" --dst="'.$opt['rel_tmpdir'].'"'
271 271
                 );
272 272
             } else {
273 273
                 if (mb_substr($file, mb_strrpos($file, '.')) == '.gz') {
274
-                    echo 'Unzipping file ' . $file . "\n";
274
+                    echo 'Unzipping file '.$file."\n";
275 275
                     system(
276
-                        $opt['unzip'] . ' --type=gzip --src="' . $opt['rel_tmpdir'] . '/' . $file . '" --dst="' . $opt['rel_tmpdir'] . '"'
276
+                        $opt['unzip'].' --type=gzip --src="'.$opt['rel_tmpdir'].'/'.$file.'" --dst="'.$opt['rel_tmpdir'].'"'
277 277
                     );
278 278
                 } else {
279 279
                     if (mb_substr($file, mb_strrpos($file, '.')) == '.bz2') {
280
-                        echo 'Unzipping file ' . $file . "\n";
280
+                        echo 'Unzipping file '.$file."\n";
281 281
                         system(
282
-                            $opt['unzip'] . ' --type=bzip2 --src="' . $opt['rel_tmpdir'] . '/' . $file . '" --dst="' . $opt['rel_tmpdir'] . '"'
282
+                            $opt['unzip'].' --type=bzip2 --src="'.$opt['rel_tmpdir'].'/'.$file.'" --dst="'.$opt['rel_tmpdir'].'"'
283 283
                         );
284 284
                     } else {
285 285
                         if (mb_substr($file, mb_strrpos($file, '.')) == '.xml') {
@@ -291,16 +291,16 @@  discard block
 block discarded – undo
291 291
 
292 292
             // und jetzt die gezippte Datei verschieben
293 293
             $archivdir = $opt['archivdir'];
294
-            $archivdir .= $opt['curdb'] . '/';
294
+            $archivdir .= $opt['curdb'].'/';
295 295
 
296 296
             if (!is_dir($archivdir)) {
297 297
                 mkdir($archivdir);
298 298
             }
299 299
 
300 300
             if ($bCopy == true) {
301
-                copy($opt['tmpdir'] . $file, $archivdir . '/' . $file);
301
+                copy($opt['tmpdir'].$file, $archivdir.'/'.$file);
302 302
             } else {
303
-                rename($opt['tmpdir'] . $file, $archivdir . '/' . $file);
303
+                rename($opt['tmpdir'].$file, $archivdir.'/'.$file);
304 304
             }
305 305
         }
306 306
     }
@@ -315,9 +315,9 @@  discard block
 block discarded – undo
315 315
 
316 316
     $hDir = opendir($opt['tmpdir']);
317 317
     while (false !== ($file = readdir($hDir))) {
318
-        if (is_file($opt['tmpdir'] . $file)) {
318
+        if (is_file($opt['tmpdir'].$file)) {
319 319
             if ($file != '.cvsignore') {
320
-                $files[] = $opt['tmpdir'] . $file;
320
+                $files[] = $opt['tmpdir'].$file;
321 321
             }
322 322
         }
323 323
     }
@@ -331,7 +331,7 @@  discard block
 block discarded – undo
331 331
 
332 332
 function importxmlfile($file)
333 333
 {
334
-    echo 'Importing file ' . $file . "\n";
334
+    echo 'Importing file '.$file."\n";
335 335
 
336 336
     $xmlReader = new xmlReader();
337 337
     $xmlReader->open($file);
@@ -411,11 +411,11 @@  discard block
 block discarded – undo
411 411
                             if ($sSubElement != '') {
412 412
                                 // vorheriges element zuerst schlißen
413 413
                                 $sSubElement = '';
414
-                                $nRecursionLevel --;
414
+                                $nRecursionLevel--;
415 415
                             }
416 416
 
417 417
                             $sSubElement = mb_strtoupper($xmlReader->name);
418
-                            $nRecursionLevel ++;
418
+                            $nRecursionLevel++;
419 419
 
420 420
                             // attribute auslesen
421 421
                             if ($xmlReader->moveToFirstAttribute()) {
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
                         } else {
433 433
                             if ($xmlReader->nodeType == XMLReader::END_ELEMENT) {
434 434
                                 $sSubElement = '';
435
-                                $nRecursionLevel --;
435
+                                $nRecursionLevel--;
436 436
                             }
437 437
                         }
438 438
                     }
@@ -459,7 +459,7 @@  discard block
 block discarded – undo
459 459
                     ImportRemovedObjectArray($node['REMOVEDOBJECT']);
460 460
                     break;
461 461
                 default:
462
-                    echo 'Unknown Element "' . $xmlReader->name . '", skipping' . "\n";
462
+                    echo 'Unknown Element "'.$xmlReader->name.'", skipping'."\n";
463 463
                     break;
464 464
             }
465 465
         }
@@ -481,9 +481,9 @@  discard block
 block discarded – undo
481 481
 
482 482
     $hDir = opendir($opt['tmpdir']);
483 483
     while (false !== ($file = readdir($hDir))) {
484
-        if (is_file($opt['tmpdir'] . $file)) {
484
+        if (is_file($opt['tmpdir'].$file)) {
485 485
             if ($file != '.cvsignore') {
486
-                unlink($opt['tmpdir'] . $file);
486
+                unlink($opt['tmpdir'].$file);
487 487
             }
488 488
         }
489 489
     }
@@ -501,14 +501,14 @@  discard block
 block discarded – undo
501 501
         // andere DB connecten?
502 502
         if (mb_substr($arg, 0, 5) == '--db=') {
503 503
             if (!is_numeric(mb_substr($arg, 5))) {
504
-                die('invalid alternative DB' . "\n");
504
+                die('invalid alternative DB'."\n");
505 505
             }
506 506
 
507 507
             $nDb = mb_substr($arg, 5);
508 508
 
509 509
             if ($nDb != 0) {
510 510
                 if (!isset($opt['db'][$nDb])) {
511
-                    die('invalid alternative DB' . "\n");
511
+                    die('invalid alternative DB'."\n");
512 512
                 }
513 513
 
514 514
                 mysql_close($dblink);
@@ -517,7 +517,7 @@  discard block
 block discarded – undo
517 517
                     sql("SET NAMES 'utf8'");
518 518
                     sql('USE `&1`', $opt['db'][1]['name']);
519 519
                 } else {
520
-                    die('Connect to alternative DB failed' . "\n");
520
+                    die('Connect to alternative DB failed'."\n");
521 521
                 }
522 522
 
523 523
                 $opt['curdb'] = $nDb;
@@ -531,7 +531,7 @@  discard block
 block discarded – undo
531 531
             sql("SET NAMES 'utf8'");
532 532
             sql('USE `&1`', $dbname);
533 533
         } else {
534
-            die('Connect to alternative DB failed' . "\n");
534
+            die('Connect to alternative DB failed'."\n");
535 535
         }
536 536
     }
537 537
 }
@@ -544,7 +544,7 @@  discard block
 block discarded – undo
544 544
         !isset($r['USERNAME']['__DATA']) ||
545 545
         !isset($r['LASTMODIFIED']['__DATA'])
546 546
     ) {
547
-        echo 'warn: ImportUserArray required element not defined' . "\n";
547
+        echo 'warn: ImportUserArray required element not defined'."\n";
548 548
 
549 549
         return;
550 550
     }
@@ -637,7 +637,7 @@  discard block
 block discarded – undo
637 637
         !isset($r['DATECREATED']['__DATA']) ||
638 638
         !isset($r['LASTMODIFIED']['__DATA'])
639 639
     ) {
640
-        echo 'warn: ImportCacheArray required element not defined' . "\n";
640
+        echo 'warn: ImportCacheArray required element not defined'."\n";
641 641
 
642 642
         return;
643 643
     }
@@ -807,7 +807,7 @@  discard block
 block discarded – undo
807 807
         !isset($r['LANGUAGE']['__ATTR']['ID']) ||
808 808
         !isset($r['LASTMODIFIED']['__DATA'])
809 809
     ) {
810
-        echo 'error: ImportCacheDescArray required element not defined' . "\n";
810
+        echo 'error: ImportCacheDescArray required element not defined'."\n";
811 811
 
812 812
         return;
813 813
     }
@@ -964,7 +964,7 @@  discard block
 block discarded – undo
964 964
         !isset($r['DATECREATED']['__DATA']) ||
965 965
         !isset($r['LASTMODIFIED']['__DATA'])
966 966
     ) {
967
-        echo 'error: ImportCachelogArray required element not defined' . "\n";
967
+        echo 'error: ImportCachelogArray required element not defined'."\n";
968 968
 
969 969
         return;
970 970
     }
@@ -995,7 +995,7 @@  discard block
 block discarded – undo
995 995
 
996 996
     // logtype gültig?
997 997
     if (sqlValue(
998
-        "SELECT COUNT(*) FROM `log_types` WHERE `id`='" . sql_escape($r['LOGTYPE']['__ATTR']['ID']) . "'",
998
+        "SELECT COUNT(*) FROM `log_types` WHERE `id`='".sql_escape($r['LOGTYPE']['__ATTR']['ID'])."'",
999 999
         0
1000 1000
     ) == 0) {
1001 1001
         importError('cachelog', $r['ID']['__DATA'], $r, 'Logtype not valid, skipping');
@@ -1068,7 +1068,7 @@  discard block
 block discarded – undo
1068 1068
         !isset($r['DATECREATED']['__DATA']) ||
1069 1069
         !isset($r['LASTMODIFIED']['__DATA'])
1070 1070
     ) {
1071
-        echo 'error: ImportPictureArray required element not defined ' . "\n";
1071
+        echo 'error: ImportPictureArray required element not defined '."\n";
1072 1072
 
1073 1073
         return;
1074 1074
     }
@@ -1169,7 +1169,7 @@  discard block
 block discarded – undo
1169 1169
         !isset($r['OBJECT']['__DATA']) ||
1170 1170
         !isset($r['REMOVEDDATE']['__DATA'])
1171 1171
     ) {
1172
-        echo 'error: ImportRemovedObjectArray required element not defined' . "\n";
1172
+        echo 'error: ImportRemovedObjectArray required element not defined'."\n";
1173 1173
 
1174 1174
         return;
1175 1175
     }
@@ -1281,12 +1281,12 @@  discard block
 block discarded – undo
1281 1281
 
1282 1282
 function importError($recordtype, $uuid, $r, $info)
1283 1283
 {
1284
-    echo 'error: ' . $recordtype . ' (' . $uuid . '): ' . $info . "\n";
1284
+    echo 'error: '.$recordtype.' ('.$uuid.'): '.$info."\n";
1285 1285
 }
1286 1286
 
1287 1287
 function importWarn($recordtype, $uuid, $r, $info)
1288 1288
 {
1289
-    echo 'warn: ' . $recordtype . ' (' . $uuid . '): ' . $info . "\n";
1289
+    echo 'warn: '.$recordtype.' ('.$uuid.'): '.$info."\n";
1290 1290
 }
1291 1291
 
1292 1292
 function restorevalues()
Please login to merge, or discard this patch.
local/devel/strip_private_data.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -9,15 +9,15 @@  discard block
 block discarded – undo
9 9
  *  Unicode Reminder メモ
10 10
  ***************************************************************************/
11 11
 
12
-$opt['rootpath'] = __DIR__ . '/../../htdocs/';
13
-require $opt['rootpath'] . 'lib2/cli.inc.php';
12
+$opt['rootpath'] = __DIR__.'/../../htdocs/';
13
+require $opt['rootpath'].'lib2/cli.inc.php';
14 14
 
15 15
 if (!($opt['debug'] & DEBUG_DEVELOPER)) {
16 16
     die("This script deletes lot of data and must be run only on development systems.\n");
17 17
 }
18 18
 if ($argc != 2 || $argv[1] != 'go') {
19 19
     die(
20
-        "This script deletes lot of data. Make sure that you really want to dos this,\n" .
20
+        "This script deletes lot of data. Make sure that you really want to dos this,\n".
21 21
         "and confirm it by adding the parameter 'go'.\n"
22 22
     );
23 23
 }
@@ -63,11 +63,11 @@  discard block
 block discarded – undo
63 63
 echo "clearing user data\n";
64 64
 sql('TRUNCATE `cache_adoption`');
65 65
 sql('TRUNCATE `cache_ignore`');
66
-sql('DELETE FROM `cache_lists` WHERE `is_public`<2');  // trigger deletes dependent data
66
+sql('DELETE FROM `cache_lists` WHERE `is_public`<2'); // trigger deletes dependent data
67 67
 sql('TRUNCATE `cache_list_bookmarks`');
68 68
 sql('TRUNCATE `cache_list_watches`');
69 69
 sql('TRUNCATE `cache_watches`');
70
-sql('DELETE FROM `coordinates` WHERE `type`=2');   // personal cache notes and coords
70
+sql('DELETE FROM `coordinates` WHERE `type`=2'); // personal cache notes and coords
71 71
 sql('TRUNCATE `queries`');
72 72
 sql('TRUNCATE `user_options`');
73 73
 sql(
@@ -132,10 +132,10 @@  discard block
 block discarded – undo
132 132
 
133 133
 echo "clearing other nonpublic data\n";
134 134
 sql('TRUNCATE `news`');
135
-$rs = sql("SHOW TABLES WHERE `Tables_in_" . $opt['db']['placeholder']['db'] . "` LIKE '\_%'");
135
+$rs = sql("SHOW TABLES WHERE `Tables_in_".$opt['db']['placeholder']['db']."` LIKE '\_%'");
136 136
 $tables = sql_fetch_column($rs);
137 137
 foreach ($tables as $table) {
138
-    sql('DROP TABLE ' . $table);
138
+    sql('DROP TABLE '.$table);
139 139
 }
140 140
 
141 141
 echo "done.\n";
Please login to merge, or discard this patch.