board category delete bug fix

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5254 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ngleader 2009-01-07 01:11:44 +00:00
parent 7301818f72
commit 369ea86fe7

View file

@ -485,7 +485,8 @@
* @brief 특정 카테고리에 child가 있는지 체크
**/
function getCategoryChlidCount($category_srl) {
$output = executeQuery('document.getChildCategoryCount');
$args->category_srl = $category_srl;
$output = executeQuery('document.getChildCategoryCount',$args);
if($output->data->count > 0) return true;
return false;
}