r21366: Until we have a schema enforcing module (which will make it
authorSimo Sorce <idra@samba.org>
Thu, 15 Feb 2007 14:48:47 +0000 (14:48 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:48:20 +0000 (14:48 -0500)
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.

webapps/swat/source/class/swat/module/ldbbrowse/Fsm.js

index ff270c65bd253801410b00fe33f800d032fd579c..eb31fa9c8acfd128f58c2841413f57050a13ae21 100644 (file)
@@ -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");