修改詢問頁面
components\com_virtuemart\themes\default\templates\pages\shop.ask.tpl.php
第34行
原始程式碼
修正程式碼
administrator/components/com_virtuemart/classes/ps_product.php
第2190行
原始程式碼
修正程式碼
使用版本
Joomla 1.5.22
VirtueMart 1.1.6
components\com_virtuemart\themes\default\templates\pages\shop.ask.tpl.php
第34行
原始程式碼
<textarea rows="10" cols="60" name="text" id="contact_text" class="inputbox"><?php echo utf8_decode($subject) ?></textarea><br />
修正程式碼
<textarea rows="10" cols="60" name="text" id="contact_text" class="inputbox"><?php echo urldecode($subject) ?></textarea><br />
administrator/components/com_virtuemart/classes/ps_product.php
第2190行
原始程式碼
$product_name = htmlentities( $this->get_field($product_id, 'product_name'), ENT_QUOTES );
修正程式碼
$product_name = htmlentities( $this->get_field($product_id, 'product_name'), ENT_QUOTES, 'utf-8' );
使用版本
Joomla 1.5.22
VirtueMart 1.1.6