* fixed a syntax error in 'product/browse'.

This commit is contained in:
Catouse
2014-04-17 11:19:30 +08:00
parent dab3aa8095
commit c42329314b
+1 -3
View File
@@ -152,7 +152,6 @@
foreach($lang->story->reviewResultList as $key => $result)
{
$actionLink = $this->createLink('story', 'batchReview', "result=$key");
echo "<li>";
if($key == 'reject')
{
echo "<li class='dropdown-submenu'>";
@@ -173,9 +172,8 @@
}
else
{
echo html::a('#', $result, '', "onclick=\"setFormAction('$actionLink','hiddenwin')\"");
echo '<li>' . html::a('#', $result, '', "onclick=\"setFormAction('$actionLink','hiddenwin')\"") . '</li>';
}
echo "</li>";
}
echo '</ul></li>';
}