16 lines
310 B
PHP
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;
|
|
|
|
?>
|