오타수정 - Bad79s님 제보

This commit is contained in:
chicpro
2014-05-07 11:16:37 +09:00
parent d5751118c2
commit 6978819d97
2 changed files with 5 additions and 5 deletions

View File

@ -119,10 +119,10 @@ class item_list
function set_type($type) {
$this->type = $type;
if ($type) {
$this->set_list_skin($list_skin);
$this->set_list_mod($list_mod);
$this->set_list_row($list_row);
$this->set_img_size($img_width);
$this->set_list_skin($this->list_skin);
$this->set_list_mod($this->list_mod);
$this->set_list_row($this->list_row);
$this->set_img_size($this->img_width);
}
}

View File

@ -51,7 +51,7 @@ for($i=0; $row=sql_fetch_array($result); $i++) {
else
$soldout = '';
$str .= PHP_EOL.'<option value="'.$val[$key].','.$row['io_price'].','.$io_stock_qty.'">'.$val[$key].$price.$soldout.'</otpion>';
$str .= PHP_EOL.'<option value="'.$val[$key].','.$row['io_price'].','.$io_stock_qty.'">'.$val[$key].$price.$soldout.'</option>';
}
}