Changeset 272
- Timestamp:
- 12/06/07 14:17:24 (15 years ago)
- Location:
- dev
- Files:
-
- 1 removed
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
dev/common/includes/class.kill.php
r254 r272 1014 1014 $this->value = 0; 1015 1015 $qry = new DBQuery(); 1016 $qry->execute("select basePrice, price from kb3_invtypes left join kb3_item_price using (typeID) where typeID='".$this->item_->getID()."'"); 1016 $qry->execute("select basePrice, price 1017 from kb3_invtypes 1018 left join kb3_item_price on kb3_invtypes.typeID=kb3_item_price.typeID 1019 where kb3_invtypes.typeID='".$this->item_->getID()."'"); 1017 1020 if ($row = $qry->getRow()) 1018 1021 { -
dev/install/install_step42.php
r254 r272 1 1 <?php 2 $stoppage = true;2 $stoppage = false; 3 3 4 4 include_once('../kbconfig.php');