This is a simple version since API documentation is already documented on the GitHub Wiki. Fixes #323
9 lines
168 B
PHP
9 lines
168 B
PHP
<?php
|
|
|
|
// Make sure we are called from index.php
|
|
if (!defined('SECURITY')) die('Hacking attempt');
|
|
|
|
// Tempalte specifics
|
|
$smarty->assign("CONTENT", "default.tpl");
|
|
?>
|