diff --git a/module/zai/model.php b/module/zai/model.php index 5ec3f38761..8865cda019 100644 --- a/module/zai/model.php +++ b/module/zai/model.php @@ -677,7 +677,7 @@ class zaiModel extends model $markdown['content'] = implode("\n", $content); - $markdown['attrs'] = array('product' => $doc->product, 'lib' => $doc->lib, 'module' => $doc->module, 'project' => $doc->project, 'execution' => $doc->execution, 'type' => $doc->type); + $markdown['attrs'] = array('product' => $doc->product, 'lib' => $doc->lib, 'module' => $doc->module, 'project' => $doc->project, 'execution' => $doc->execution, 'type' => $doc->type, 'version' => $doc->version); return $markdown; } @@ -769,7 +769,7 @@ class zaiModel extends model $markdown['content'] = implode("\n", $content); - $markdown['attrs'] = array('product' => $feedback->product, 'module' => $feedback->module, 'type' => $feedback->type); + $markdown['attrs'] = array('product' => $feedback->product, 'module' => $feedback->module, 'type' => $feedback->type, 'status' => $feedback->status, 'pri' => $feedback->pri); return $markdown; } }