From d756a3f5d56ea4daa473af801c9fb0940c0ecadc Mon Sep 17 00:00:00 2001 From: zhujinyong Date: Sun, 14 Mar 2021 22:12:45 +0800 Subject: [PATCH] * Fix bug: object undefined. --- config/filter.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config/filter.php b/config/filter.php index 12a4b2b042..dca7d428d4 100644 --- a/config/filter.php +++ b/config/filter.php @@ -80,10 +80,14 @@ $filter->product->project = new stdclass(); $filter->program->default = new stdclass(); $filter->program->pgmproject = new stdclass(); $filter->program->prjbrowse = new stdclass(); +$filter->program->project = new stdclass(); +$filter->program->browse = new stdclass(); +$filter->program->export = new stdclass(); $filter->program->pgmbrowse = new stdclass(); $filter->program->export = new stdclass(); $filter->program->ajaxgetpgmdropmenu = new stdclass(); $filter->project->default = new stdclass(); +$filter->project->browse = new stdclass(); $filter->project->story = new stdclass(); $filter->project->export = new stdclass(); $filter->project->task = new stdclass();