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