#19690583 Description attribute/column for document_category table added

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8305 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
mosmartin 2011-04-13 12:09:29 +00:00
parent 0e408aa459
commit 0500c227a3
9 changed files with 41 additions and 6 deletions

View file

@ -346,6 +346,7 @@
**/
function getNoticeList($obj) {
$args->module_srl = $obj->module_srl;
$args->category_srl= $obj->category_srl;
$output = executeQueryArray('document.getNoticeList', $args);
if(!$output->toBool()||!$output->data) return;
@ -607,6 +608,7 @@
$obj->category_srl = $val['category_srl'];
$obj->parent_srl = $val['parent_srl'];
$obj->title = $obj->text = $val['text'];
$obj->description = $val['description'];
$obj->expand = $val['expand']=='Y'?true:false;
$obj->color = $val['color'];
$obj->document_count = $val['document_count'];