diff --git a/homepage/wkParticipo/abbildungen/060-066.DeAshiBarei.png b/homepage/wkParticipo/abbildungen/060-066.DeAshiBarei.png new file mode 100644 index 0000000..b59b654 Binary files /dev/null and b/homepage/wkParticipo/abbildungen/060-066.DeAshiBarei.png differ diff --git a/homepage/wkParticipo/abbildungen/067-072.HizaGuruma.png b/homepage/wkParticipo/abbildungen/067-072.HizaGuruma.png new file mode 100644 index 0000000..df6dc06 Binary files /dev/null and b/homepage/wkParticipo/abbildungen/067-072.HizaGuruma.png differ diff --git a/homepage/wkParticipo/abbildungen/073-078.png b/homepage/wkParticipo/abbildungen/073-078.png new file mode 100644 index 0000000..ff40ef9 Binary files /dev/null and b/homepage/wkParticipo/abbildungen/073-078.png differ diff --git a/homepage/wkParticipo/abbildungen/177-181.TaiOtoshi.png b/homepage/wkParticipo/abbildungen/177-181.TaiOtoshi.png new file mode 100644 index 0000000..66a2dcb Binary files /dev/null and b/homepage/wkParticipo/abbildungen/177-181.TaiOtoshi.png differ diff --git a/homepage/wkParticipo/abbildungen/182-184.TaiOtoshi.png b/homepage/wkParticipo/abbildungen/182-184.TaiOtoshi.png new file mode 100644 index 0000000..b46dee2 Binary files /dev/null and b/homepage/wkParticipo/abbildungen/182-184.TaiOtoshi.png differ diff --git a/homepage/wkParticipo/abbildungen/185-187.TaiOtoshi.png b/homepage/wkParticipo/abbildungen/185-187.TaiOtoshi.png new file mode 100644 index 0000000..f260f6d Binary files /dev/null and b/homepage/wkParticipo/abbildungen/185-187.TaiOtoshi.png differ diff --git a/homepage/wkParticipo/abbildungen/188-190.TaiOtoshi.png b/homepage/wkParticipo/abbildungen/188-190.TaiOtoshi.png new file mode 100644 index 0000000..6570e92 Binary files /dev/null and b/homepage/wkParticipo/abbildungen/188-190.TaiOtoshi.png differ diff --git a/homepage/wkParticipo/abbildungen/SeoiNage.125-128.png b/homepage/wkParticipo/abbildungen/SeoiNage.125-128.png new file mode 100644 index 0000000..fa7f2c0 Binary files /dev/null and b/homepage/wkParticipo/abbildungen/SeoiNage.125-128.png differ diff --git a/homepage/wkParticipo/abbildungen/SeoiNage.129-131.png b/homepage/wkParticipo/abbildungen/SeoiNage.129-131.png new file mode 100644 index 0000000..51b0d05 Binary files /dev/null and b/homepage/wkParticipo/abbildungen/SeoiNage.129-131.png differ diff --git a/homepage/wkParticipo/addEvent.php b/homepage/wkParticipo/addEvent.php index 30a6ff1..de4df97 100644 --- a/homepage/wkParticipo/addEvent.php +++ b/homepage/wkParticipo/addEvent.php @@ -3,7 +3,7 @@ require_once('../local/wkParticipoConf.php.inc'); $message = array(); if(!empty($_POST)){ - if( empty($_POST['f']['wkId']) || empty($_POST['f']['meldefrist']) || empty($_POST['f']['datum']) ){ + if( empty($_POST['f']['wkId']) || empty($_POST['f']['meldefrist']) ){ $message['error'] = 'Es wurden nicht alle Felder ausgefüllt.'; } else{ @@ -12,13 +12,12 @@ $message['error'] = 'Datenbankverbindung fehlgeschlagen: ' . $mysqli->connect_error; } $query = sprintf( - "INSERT INTO wkParticipo_Events (wkId, datum, meldefrist) - SELECT * FROM (SELECT '%s', '%s', '%s') as new_event + "INSERT INTO wkParticipo_Events (wkId, meldefrist) + SELECT * FROM (SELECT '%s', '%s') as new_event WHERE NOT EXISTS ( SELECT wkId FROM wkParticipo_Events WHERE wkId = '%s' ) LIMIT 1;", $mysqli->real_escape_string($_POST['f']['wkId']), - $mysqli->real_escape_string($_POST['f']['datum']), $mysqli->real_escape_string($_POST['f']['meldefrist']), $mysqli->real_escape_string($_POST['f']['wkId']) ); @@ -56,7 +55,6 @@