Authored by hf

fixes bug to detail page

... ... @@ -17,12 +17,10 @@ class DetailController extends AbstractAction
public function indexAction()
{
$productId = $this->param('productId');
$productId = 22399;
if (!is_numeric($productId)) {
$this->error();
}
$goodsId = $this->param('goodsId');
$goodsId = 32443;
if (!is_numeric($goodsId)) {
$this->error();
}
... ...