diff options
author | Simo Sorce <idra@samba.org> | 2007-02-15 14:48:47 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:48:20 -0500 |
commit | bc9939430ed38b861c7d98dbe4adb2b664135d00 (patch) | |
tree | 328b10bae604cbef9a45ae17ecc7e9a8b5f420a9 /webapps | |
parent | 9a9b1978560b9758d69fbcd7028d098e363f7e8f (diff) | |
download | samba-bc9939430ed38b861c7d98dbe4adb2b664135d00.tar.gz samba-bc9939430ed38b861c7d98dbe4adb2b664135d00.tar.bz2 samba-bc9939430ed38b861c7d98dbe4adb2b664135d00.zip |
r21366: Until we have a schema enforcing module (which will make it
impossible to add object without an objectclass), we need to
use the default ldb search filter (an empty one), to retrieve
all objects, and all record contents.
(This used to be commit fab315bb8cf00d2df6276c4dece05e1644a210bf)
Diffstat (limited to 'webapps')
-rw-r--r-- | webapps/swat/source/class/swat/module/ldbbrowse/Fsm.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webapps/swat/source/class/swat/module/ldbbrowse/Fsm.js b/webapps/swat/source/class/swat/module/ldbbrowse/Fsm.js index ff270c65bd..eb31fa9c8a 100644 --- a/webapps/swat/source/class/swat/module/ldbbrowse/Fsm.js +++ b/webapps/swat/source/class/swat/module/ldbbrowse/Fsm.js @@ -311,7 +311,7 @@ qx.Proto.buildFsm = function(module) } // Build the search expression - var searchExpr = "(objectclass=*)"; + var searchExpr = ""; // Get our module descriptor var module = fsm.getObject("swat.main.module"); @@ -415,7 +415,7 @@ qx.Proto.buildFsm = function(module) baseDN = hierarchy.reverse().join(","); // Build the search expression - var searchExpr = "(objectclass=*)"; + var searchExpr = ""; // Get our module descriptor var module = fsm.getObject("swat.main.module"); |