php-mpos/public/include/pages/gettingstarted.inc.php
2014-01-10 18:40:06 -07:00

15 lines
469 B
PHP

<?php
// Make sure we are called from index.php
if (!defined('SECURITY'))
die('Hacking attempt');
$smarty->assign("SITESTRATUMURL", $config['gettingstarted']['stratumurl']);
$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");
?>