14 lines
393 B
PHP
14 lines
393 B
PHP
<?php
|
|
|
|
// Make sure we are called from index.php
|
|
if (!defined('SECURITY'))
|
|
die('Hacking attempt');
|
|
|
|
$smarty->assign("SITESTRATUMPORT", $config['gettingstarted']['stratumport']);
|
|
$smarty->assign("SITECOINNAME", $config['gettingstarted']['coinname']);
|
|
$smarty->assign("SITECOINURL", $config['gettingstarted']['coinurl']);
|
|
|
|
// Tempalte specifics
|
|
$smarty->assign("CONTENT", "default.tpl");
|
|
?>
|