Merge pull request #2046 from LucasJones/development

Fix bug in admin dashboard
This commit is contained in:
Sebastian Grewe 2014-03-28 20:08:02 +01:00
commit a70d6af9dd

View File

@ -18,7 +18,7 @@ if (!$smarty->isCached('master.tpl', $smarty_cache_key)) {
$dAccountAddresses = array();
foreach($dWalletAccounts as $key => $value)
{
$dAccountAddresses[$key] = $bitcoin->getaddressesbyaccount($key);
$dAccountAddresses[$key] = $bitcoin->getaddressesbyaccount((string)$key);
}
$aGetInfo = $bitcoin->getinfo();