This commit is contained in:
Walter Hupfeld 2024-03-15 17:24:40 +01:00
commit e325b14ee7
3 changed files with 10 additions and 1 deletions

View File

@ -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.

View File

@ -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"]);

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB