Merge branch 'main' of https://gitea.bankerheide.de/whupfeld/melder
This commit is contained in:
commit
e325b14ee7
@ -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"]);
|
||||
|
BIN
favicon.ico
Normal file
BIN
favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
Loading…
Reference in New Issue
Block a user