Ian eb77dc369a added empty $template_config_groups var
for template changes, if previous template had these set
2013-02-03 11:28:11 +01:00

16 lines
310 B
PHP

<?php # $Id$
if (IN_serendipity !== true) {
die ("Don't hack!");
}
$probelang = dirname(__FILE__) . '/lang_' . $serendipity['lang'] . '.inc.php';
if (file_exists($probelang)) {
include $probelang;
} else {
include dirname(__FILE__) . '/lang_en.inc.php';
}
$template_config_groups = NULL;
?>