Bernd Wurst commited on 2026-09-04 17:58:33
Zeige 3 geänderte Dateien mit 6 Einfügungen und 4 Löschungen.
| ... | ... |
@@ -2,11 +2,11 @@ |
| 2 | 2 |
session_start(); |
| 3 | 3 |
if (isset($_SESSION['mode']) && $_SESSION['mode'] == 'local') {
|
| 4 | 4 |
$_SESSION['angeliefert'] = true; |
| 5 |
- header("Location: gebrauchte.php");
|
|
| 5 |
+ header("Location: obstart.php");
|
|
| 6 | 6 |
die(); |
| 7 | 7 |
} |
| 8 | 8 |
// hardcoded, Vorabanmeldung ist momentan nicht vorgesehen |
| 9 |
-header("Location: gebrauchte.php");
|
|
| 9 |
+header("Location: obstart.php");
|
|
| 10 | 10 |
die(); |
| 11 | 11 |
|
| 12 | 12 |
|
| ... | ... |
@@ -27,7 +27,7 @@ $num = count($phonenumbers) * 2 + count($emailaddrs); |
| 27 | 27 |
if ($num < 2) {
|
| 28 | 28 |
$_SESSION['notification_done'] = true; |
| 29 | 29 |
// Nichts zum aussuchen! |
| 30 |
- header('Location: gebrauchte.php');
|
|
| 30 |
+ header('Location: obstart.php');
|
|
| 31 | 31 |
} |
| 32 | 32 |
|
| 33 | 33 |
foreach ($phonenumbers as $phone) {
|
| ... | ... |
@@ -5,8 +5,10 @@ require_once "lib/helper.php"; |
| 5 | 5 |
if (!file_exists("../data/".date("Y"))) {
|
| 6 | 6 |
mkdir("../data/".date("Y"));
|
| 7 | 7 |
} |
| 8 |
- |
|
| 9 | 8 |
session_start(); |
| 9 |
+print_r($_REQUEST); |
|
| 10 |
+print_r($_SESSION); |
|
| 11 |
+ |
|
| 10 | 12 |
if (isset($_COOKIE['MODE']) && $_COOKIE['MODE'] == 'local') {
|
| 11 | 13 |
$_SESSION['mode'] = 'local'; |
| 12 | 14 |
} |
| 13 | 15 |