diff options
Diffstat (limited to 'configs')
-rw-r--r-- | configs/conferences/chaosradio/config.php | 4 | ||||
-rw-r--r-- | configs/conferences/datengarten/config.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/configs/conferences/chaosradio/config.php b/configs/conferences/chaosradio/config.php index a81e356..812b832 100644 --- a/configs/conferences/chaosradio/config.php +++ b/configs/conferences/chaosradio/config.php @@ -11,7 +11,7 @@ preg_match('/^cr([0-9]+)$/i', $upcoming_cr['short_name'], $m); $EPISODE = intval($m[1]); $DATE = strtotime($upcoming_cr['start_date'].' 22:00'); -$TITLE = "Chaosradio $EPISODE"; +$TITLE = $upcoming_cr['name']; $IM_CCCB = ($upcoming_cr['location'] == 'CCCB'); $STREAM = $IM_CCCB ? 's5' : 'q2'; @@ -49,7 +49,7 @@ $GLOBALS['CONFIG']['CONFERENCE'] = array( * Dieser im Seiten-Header, im <title>-Tag, in der About-Seite und ggf. ab weiteren Stellen als * Anzeigetext benutzt */ - 'TITLE' => "Chaosradio #$EPISODE", + 'TITLE' => $TITLE, /** * Veranstalter diff --git a/configs/conferences/datengarten/config.php b/configs/conferences/datengarten/config.php index 557260b..c40aa28 100644 --- a/configs/conferences/datengarten/config.php +++ b/configs/conferences/datengarten/config.php @@ -11,7 +11,7 @@ preg_match('/^dg([0-9]+)$/i', $upcoming_dg['short_name'], $m); $EPISODE = intval($m[1]); $DATE = strtotime($upcoming_dg['start_date'].' 22:00'); -$TITLE = "Datengarten $EPISODE"; +$TITLE = $upcoming_dg['name']; $GLOBALS['CONFIG']['CONFERENCE'] = array( @@ -47,7 +47,7 @@ $GLOBALS['CONFIG']['CONFERENCE'] = array( * Dieser im Seiten-Header, im <title>-Tag, in der About-Seite und ggf. ab weiteren Stellen als * Anzeigetext benutzt */ - 'TITLE' => "Datengarten #$EPISODE", + 'TITLE' => $TITLE, /** * Veranstalter |