summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2007-02-15 14:48:47 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:48:20 -0500
commitbc9939430ed38b861c7d98dbe4adb2b664135d00 (patch)
tree328b10bae604cbef9a45ae17ecc7e9a8b5f420a9
parent9a9b1978560b9758d69fbcd7028d098e363f7e8f (diff)
downloadsamba-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)
-rw-r--r--webapps/swat/source/class/swat/module/ldbbrowse/Fsm.js4
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");