1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-03-13 06:01:03 +00:00

miner.php remove unneeded '.'s

This commit is contained in:
Kano 2012-06-25 20:02:40 +10:00
parent f2e6ac50a4
commit 5ef8528470

View File

@ -98,7 +98,7 @@ function htmlhead($checkapi, $rig)
$paramrig = '';
if ($rig != null && $rig != '')
$paramrig .= "&rig=$rig";
$paramrig = "&rig=$rig";
if ($ignorerefresh == true || $autorefresh == 0)
$refreshmeta = '';
@ -947,7 +947,7 @@ function doOne($rig, $preprocess)
{
$rg = '';
if (count($rigs) > 1)
$rg .= " Rig $rig";
$rg = " Rig $rig";
echo "<input type=button value='Restart' onclick='prc(\"restart&rig=$rig\",\"Restart CGMiner$rg\")'>";
echo "&nbsp;<input type=button value='Quit' onclick='prc(\"quit&rig=$rig\",\"Quit CGMiner$rg\")'>";
}