mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-24 06:22:08 +03:00
10 lines
211 B
PHP
10 lines
211 B
PHP
<?php
|
|
|
|
require_once(CONST_BasePath.'/lib/lib.php');
|
|
require_once(CONST_BasePath.'/lib/DB.php');
|
|
|
|
if (get_magic_quotes_gpc()) {
|
|
echo "Please disable magic quotes in your php.ini configuration\n";
|
|
exit;
|
|
}
|