summaryrefslogtreecommitdiffstats
path: root/app/model
diff options
context:
space:
mode:
Diffstat (limited to 'app/model')
-rw-r--r--app/model/pad.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/model/pad.php b/app/model/pad.php
index d29b1f6..d7cfb23 100644
--- a/app/model/pad.php
+++ b/app/model/pad.php
@@ -18,4 +18,12 @@ $pad = getPageObj();
$stages = $pad->getStages();
$stages = array_reverse($stages);
+$issues = array();
+
+foreach ($stages as $s)
+{
+ $i = $s->getIssues_ordByDueByNumb();
+ $issues = array_merge($issues, $i);
+}
+
?>