Browse Source

debugging semicolons

master
poikilos 9 years ago
committed by Jacob Gustafson
parent
commit
2827ba92c8
  1. 6
      web/viewchunkymap.php

6
web/viewchunkymap.php

@ -45,13 +45,13 @@ if (is_file('chunkymap.php')) {
$html4_mode_enable=false; $html4_mode_enable=false;
$append_vars = ""; $append_vars = "";
if (isset($x)) { if (isset($x)) {
$append_vars.="&x=$x" $append_vars.="&x=$x";
} }
if (isset($z)) { if (isset($z)) {
$append_vars.="&z=$z" $append_vars.="&z=$z";
} }
if (isset($zoom)) { if (isset($zoom)) {
$append_vars.="&zoom=$zoom" $append_vars.="&zoom=$zoom";
} }
if (!isset($world_name)) { if (!isset($world_name)) {
if ($handle = opendir($chunkymapdata_worlds_path)) { if ($handle = opendir($chunkymapdata_worlds_path)) {

Loading…
Cancel
Save