typo
[platal.git] / htdocs / geoloc / geolocInit.php
1 <?php
2 require_once('xorg.inc.php');
3
4 header("Content-type: text/xml");
5 new_nonhtml_page('geoloc/geolocInit.tpl', AUTH_COOKIE);
6
7 $querystring = "";
8 foreach ($_GET as $v => $a)
9 if ($v != 'initfile')
10 $querystring .= '&'.urlencode($v).'='.urlencode($a);
11 $page->assign('querystring',$querystring);
12 $page->run();
13 ?>