removed unused smarty globals for now

This commit is contained in:
Sebastian Grewe 2013-05-16 21:13:37 +02:00
parent ed313c403d
commit f46655501a

View File

@ -37,15 +37,12 @@ if (!$iCurrentPoolShareRate = $memcache->get('iCurrentPoolShareRate')) {
} }
$aGlobal = array( $aGlobal = array(
'slogan' => $settings->getValue('slogan'), 'slogan' => $config['website']['slogan'],
'websitename' => $settings->getValue('websitename'), 'websitename' => $config['website']['name'],
'ltc_usd' => $settings->getValue('btcesell'),
'hashrate' => $iCurrentPoolHashrate, 'hashrate' => $iCurrentPoolHashrate,
'sharerate' => $iCurrentPoolShareRate, 'sharerate' => $iCurrentPoolShareRate,
'workers' => $iCurrentActiveWorkers, 'workers' => $iCurrentActiveWorkers,
'roundshares' => $aRoundShares, 'roundshares' => $aRoundShares,
'statstime' => $settings->getValue('statstime'),
'motd' => $settings->getValue('motd'),
'confirmations' => $config['confirmations'], 'confirmations' => $config['confirmations'],
'reward' => $config['reward'] 'reward' => $config['reward']
); );