+ | story->legendFromBug;?> |
+
+
+ id $fromBug->title'>" . html::a($this->createLink('bug', 'view', "bugID=$fromBug->id"), "#$fromBug->id $fromBug->title") . '';?>
+
+ |
+
| story->legendBugs;?> |
id $fromBug->title'>" . html::a($this->createLink('bug', 'view', "bugID=$fromBug->id"), "#$fromBug->id $fromBug->title") . " {$lang->story->legendFromBug}";
+ foreach($bugs as $bug)
+ {
+ echo "- " . html::a($this->createLink('bug', 'view', "bugID=$bug->id"), "#$bug->id $bug->title") . '
';
+ }
?>
|
@@ -308,10 +319,19 @@
{
if(isset($story->extraStories[$linkStoryID])) echo '' . html::a(inlink('view', "storyID=$linkStoryID"), "#$linkStoryID " . $story->extraStories[$linkStoryID]) . '';
}
+ ?>
+
+
+
+
+ | story->legendChildStories;?> |
+
+
+ childStories) ;
foreach($childStories as $childStoryID)
{
- if(isset($story->extraStories[$childStoryID])) echo '- ' . html::a(inlink('view', "storyID=$childStoryID"), "#$childStoryID " . $story->extraStories[$childStoryID]) . " {$lang->story->legendChildStories}
";
+ if(isset($story->extraStories[$childStoryID])) echo '- ' . html::a(inlink('view', "storyID=$childStoryID"), "#$childStoryID " . $story->extraStories[$childStoryID]) . '
';
}
?>
|