make class greater

This commit is contained in:
Igor Barkov [iwork] 2019-01-14 18:44:12 +02:00
parent 1d881d47ad
commit 21457ab0a1
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class ShopItem extends Item
*/
public function printControls()
{
$btnPrice = "Купить за {intval($this->cost)} кр.";
$btnPrice = "Купить за " . intval($this->cost) . " кр.";
$btnLink = "/shop.php?buy={$this->id}&rnd=".mt_rand();
echo <<<BTN
<p><input type="button" style="background: darkgrey; border: 1px solid grey; border-radius: 2px;" value="{$btnPrice}"