Skip to content

Commit ef7d945

Browse files
committed
refactor: remove echos
Left some echos in the PHP code from testing... They've been removed now.
1 parent 7ca40f2 commit ef7d945

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

utils/params.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"zoom" => "int",
3333
"_js" => "map.setZoom(%d);"
3434
),
35-
35+
3636
);
3737

3838
$javascriptToPrint = array();
@@ -42,7 +42,6 @@
4242
foreach ($getParams as $key => $parameters) {
4343

4444
if (isset($_GET[$key])){
45-
echo "$key is set<br/>";
4645
$gotParams = array();
4746
$javascript = "";
4847

@@ -51,7 +50,6 @@
5150
$javascript = $type;
5251
continue;
5352
}
54-
echo "Checking $paramName<br/>";
5553
if(isset($_GET[$paramName])){ // Been set, check it and add it
5654

5755
$val = $_GET[$paramName];

0 commit comments

Comments
 (0)