diff options
| author | dedeibel | 2018-04-16 22:24:59 +0200 | 
|---|---|---|
| committer | dedeibel | 2018-04-16 22:24:59 +0200 | 
| commit | 45e406512e1e07c59f9523ea11e10e3f537376bc (patch) | |
| tree | 272c8ca6b2ae1f92125484834d6a6f6489e9cf6e /configs/conferences | |
| parent | 00dbacba3e0a604c2090508d51798913652587e3 (diff) | |
glt18 fixed slugs (no dots allowed in php hash keys)
Diffstat (limited to '')
| -rw-r--r-- | configs/conferences/glt18/config.php | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/configs/conferences/glt18/config.php b/configs/conferences/glt18/config.php index 2f80ff7..14a8347 100644 --- a/configs/conferences/glt18/config.php +++ b/configs/conferences/glt18/config.php @@ -119,10 +119,10 @@ $CONFIG['OVERVIEW'] = array(       */      'GROUPS' => array(          'Vortragsraeume' => array( -            'G.AP149.112', -            'G.AP147.004', -            'G.AP147.005', -            'G.AP147.006', +            'GAP149112', +            'GAP147004', +            'GAP147005', +            'GAP147006',          ),      ),  ); @@ -137,7 +137,7 @@ $CONFIG['ROOMS'] = array(       * Array-Key ist der Raum-Slug, der z.B. auch zum erstellen der URLs,       * in $CONFIG['OVERVIEW'] oder im Feedback verwendet wird.       */ -    'G.AP149.112' => array( +    'GAP149112' => array(          /**           * Breite Anzeige erzwingen           */ @@ -350,7 +350,7 @@ $CONFIG['ROOMS'] = array(          // ),      ), -    'G.AP147.004' => array( +    'GAP147004' => array(          'WIDE' => false,          'DISPLAY' => 'G.AP147.004',          'STREAM' => 's2', @@ -372,7 +372,7 @@ $CONFIG['ROOMS'] = array(          'TWITTER' => true,      ), -    'G.AP147.005' => array( +    'GAP147005' => array(           'WIDE' => false,           'DISPLAY' => 'G.AP147.005',           'STREAM' => 's3', @@ -394,7 +394,7 @@ $CONFIG['ROOMS'] = array(           'TWITTER' => true,       ), -     'G.AP147.006' => array( +     'GAP147006' => array(           'WIDE' => false,           'DISPLAY' => 'G.AP147.006',           'STREAM' => 's4', | 
