From: hickert Date: Tue, 9 Mar 2010 07:44:38 +0000 (+0000) Subject: Allow to use the list without the new filterEditor X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=adcb188f1d62f67c443359c25794b61f3cb0a223;p=gosa.git Allow to use the list without the new filterEditor git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@16355 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/include/class_filter.inc b/gosa-core/include/class_filter.inc index 2afa3fe60..cb70fb4ab 100644 --- a/gosa-core/include/class_filter.inc +++ b/gosa-core/include/class_filter.inc @@ -60,6 +60,11 @@ class filter { } $this->pid= preg_replace("/[^0-9]/", "", microtime(TRUE)); + + // Instantiate the filter editor. + if(class_available("filterEditor")){ + $this->filterEditor = new filterEditor($config, $this); + } }