This commit is contained in:
lopar 2019-01-14 23:44:33 +02:00
parent 93a9ef420e
commit d0497b1606
2 changed files with 3 additions and 8 deletions

View File

@ -2,15 +2,10 @@
class ShopItem extends Item
{
public $count;
public $razdel;
public $ecost;
public $zeton;
public $onlyone;
public $shshop;
public function printInfo()
{
if (self::printControls(true)) $this->maxdur = 0;
parent::printBaseInfo();
parent::printRequirements();
parent::printBonuses();
@ -25,6 +20,7 @@ class ShopItem extends Item
if ($sell) {
$btnPrice = "Продать";
$btnLink = "/shop.php?sell={$this->id}&rnd=".mt_rand();
$this->maxdur = 0;
} else {
$btnPrice = "Купить за " . intval($this->cost) . " кр.";
$btnLink = "/shop.php?buy={$this->id}&rnd=" . mt_rand();

View File

@ -46,7 +46,6 @@ foreach ($iteminfo as $ii) {
echo "<tr><td bgcolor='#d3d3d3'>";
$ii->printImage();
$ii->printControls();
echo $this->printControls();
echo "</td>";
echo "<td bgcolor='#d3d3d3'>";
$ii->printInfo();