Subversion Repositories LCARS

Rev

Rev 56 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
38 PointedEar 1
<?php
2
  /* Set language to German */
3
  $language = 'de';
56 PointedEar 4
  $locale = 'de_DE.UTF-8';
38 PointedEar 5
  putenv("LC_ALL=$locale");
6
  setlocale(LC_ALL, $locale);
210 PointedEar 7
 
38 PointedEar 8
  require_once 'global.php';
210 PointedEar 9
  require_once 'application/layouts/index/index.phtml';
38 PointedEar 10
?>