From ed943f5c544fa7efd25a8349440b50eec96aed0a Mon Sep 17 00:00:00 2001 From: iAmShorty Date: Wed, 12 Feb 2014 11:53:10 +0100 Subject: [PATCH] [UPDATE] typo --- public/include/admin_checks.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/include/admin_checks.php b/public/include/admin_checks.php index 86a771dd..115d1c4c 100644 --- a/public/include/admin_checks.php +++ b/public/include/admin_checks.php @@ -80,10 +80,10 @@ if (@$_SESSION['USERDATA']['is_admin'] && $user->isAdmin(@$_SESSION['USERDATA'][ // check if there is more than one account set on wallet $accounts = $bitcoin->listaccounts(); if (count($accounts) > 1) { - $error[] = "There is more than one Account (" . count($accounts) . ") set in local Wallet, please ensure that there is enough Balance on the Standard Account to pay your miners!"; + $error[] = "There are " . count($accounts) . " Accounts set in local Wallet. Please ensure that there is enough Balance on the Default Account to pay your miners!"; } foreach ($accounts as $account => $balance) { - if ($account == "") { $account = "Standard"; } + if ($account == "") { $account = "Default"; } if ($balance <= 0) { $error[] = "Account: " . $account . " has no liquid funds to pay your miners!"; } else {