1
0
This repository has been archived on 2025-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
LuckyCoinkydink/templates/kubrick/config.inc.php
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;
?>