additional_plugins/serendipity_event_mobile_output/templates/xhtml_mp/config.inc.php

14 lines
273 B
PHP
Raw Normal View History

<?php #
2011-12-13 12:29:05 +01:00
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';
}
?>