diff options
-rw-r--r-- | configs/conferences/nixcon15/config.php | 6 | ||||
-rwxr-xr-x | configs/conferences/nixcon15/download.sh | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/configs/conferences/nixcon15/config.php b/configs/conferences/nixcon15/config.php index 7f13310..5127046 100644 --- a/configs/conferences/nixcon15/config.php +++ b/configs/conferences/nixcon15/config.php @@ -258,7 +258,7 @@ $GLOBALS['CONFIG']['ROOMS'] = array( * Name des Raums im Fahrplan * Wenn diese Zeile auskommentiert ist wird der Raum-Slug verwendet */ - 'SCHEDULE_NAME' => 'room', + 'SCHEDULE_NAME' => 'NixCon', /** * Feedback anzeigen (boolean) @@ -395,7 +395,7 @@ $GLOBALS['CONFIG']['TWITTER'] = array( * Konfigurationen zum Konferenz-Fahrplan * Wird dieser Block auskommentiert, werden alle Fahrplan-Bezogenen Features deaktiviert */ -$GLOBALS['CONFIG']['SCHEDULE_DISABLED'] = array( +$GLOBALS['CONFIG']['SCHEDULE'] = array( /** * URL zum Fahrplan-XML * @@ -403,7 +403,7 @@ $GLOBALS['CONFIG']['SCHEDULE_DISABLED'] = array( * aufhören zu funktionieren. Wenn die Quelle unverlässlich ist ;) sollte ein * externer HTTP-Cache vorgeschaltet werden. */ - 'URL' => 'configs/conferences/ppw15b/schedule.xml', + 'URL' => 'configs/conferences/nixcon15/schedule.xml', /** * APCU-Cache-Zeit in Sekunden * Wird diese Zeile auskommentiert, werden die apc_*-Methoden nicht verwendet und diff --git a/configs/conferences/nixcon15/download.sh b/configs/conferences/nixcon15/download.sh index e6be49c..505de02 100755 --- a/configs/conferences/nixcon15/download.sh +++ b/configs/conferences/nixcon15/download.sh @@ -1,4 +1,4 @@ #!/bin/sh # fahrplan -wget --no-check-certificate -q "https://frab.sendegate.de/en/ppw15b/public/schedule.xml" -O /tmp/schedule.xml && mv /tmp/schedule.xml schedule.xml +wget --no-check-certificate -q "http://n621.de/fud/nixcon.xml" -O /tmp/schedule.xml && mv /tmp/schedule.xml schedule.xml |