no need for Geo API keys anymore

This commit is contained in:
2019-03-23 18:08:27 +01:00
parent 7004934d54
commit 6acfbc7cdc
2 changed files with 1 additions and 4 deletions

View File

@@ -54,7 +54,7 @@ if($sAction!='')
$sResult = $oSpot->syncPics(); $sResult = $oSpot->syncPics();
break; break;
default: default:
$sResult = Spot::getJsonResult(false, Spot::NOT_FOUND); $sResult = Main::getJsonResult(false, Main::NOT_FOUND);
} }
} }
else $sResult = $oSpot->getMainPage(); else $sResult = $oSpot->getMainPage();

View File

@@ -10,8 +10,5 @@ class Settings
const DB_ENC = 'utf8mb4'; const DB_ENC = 'utf8mb4';
const TEXT_ENC = 'UTF-8'; const TEXT_ENC = 'UTF-8';
const TIMEZONE = 'Europe/Paris'; const TIMEZONE = 'Europe/Paris';
const MAPBOX_KEY = '';
const IGN_FR_KEY = '';
const LINZ_KEY = '';
const DEBUG = true; const DEBUG = true;
} }