* Code for task#633.

* Refactory the storyQueryCondition.
This commit is contained in:
chencongzhi520@gmail.com
2012-06-13 03:11:59 +00:00
parent c5c345b912
commit 8270d49148
11 changed files with 93 additions and 42 deletions
+2 -2
View File
@@ -36,11 +36,11 @@
echo html::a($browseLink, $lang->goback);
if($preAndNext->pre)
{
echo "<abbr title='{$preAndNext->pre->id}{$lang->colon}{$preAndNext->pre->name}'>" . html::a($this->inLink('view', "taskID={$preAndNext->pre->id}"), '<') . "</abbr>&nbsp;&nbsp;";
echo "<abbr id='pre' title='{$preAndNext->pre->id}{$lang->colon}{$preAndNext->pre->name}'>" . html::a($this->inLink('view', "taskID={$preAndNext->pre->id}"), '<') . "</abbr>&nbsp;&nbsp;";
}
if($preAndNext->next)
{
echo "<abbr title={$preAndNext->next->id}{$lang->colon}{$preAndNext->pre->name}>" . html::a($this->inLink('view', "taskID={$preAndNext->next->id}"), '>') . "</abbr>";
echo "<abbr id='next' title={$preAndNext->next->id}{$lang->colon}{$preAndNext->pre->name}>" . html::a($this->inLink('view', "taskID={$preAndNext->next->id}"), '>') . "</abbr>";
}
?>
</div>