provide empty location
This commit is contained in:
parent
589d9127df
commit
1e24715598
@ -127,4 +127,8 @@ Export von Shape-Files
|
||||
## Improvements
|
||||
|
||||
* Rating durch Cookie absichern, so dass nicht zwei mal während einer Sitzung ein Maker betätigt werden kann.
|
||||
* Alert nach Rating überarbeiten (z.B. mit Bootstrap)
|
||||
* Alert nach Rating überarbeiten (z.B. mit Bootstrap)
|
||||
|
||||
## Probleme
|
||||
|
||||
Ohne favicon.ico verliert Chrome die Session.
|
@ -18,6 +18,11 @@ $numLat = $_POST['lat'];
|
||||
$strDistrict = $_POST['district'];
|
||||
$boolUploadOk=false;
|
||||
|
||||
//Leere Einträge verhindern
|
||||
if (empty($strUsername) || empty($numLng) || empty($numLat)) {
|
||||
die("not valid!");
|
||||
}
|
||||
|
||||
if ($boolUpload && !empty($_FILES['uploadfile']['name'])) {
|
||||
$uploadfile = $uploaddir . basename($_FILES['uploadfile']['name']);
|
||||
$fileinfo = @getimagesize($_FILES["uploadfile"]["tmp_name"]);
|
||||
|
Loading…
Reference in New Issue
Block a user