From bc9939430ed38b861c7d98dbe4adb2b664135d00 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Thu, 15 Feb 2007 14:48:47 +0000 Subject: 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) --- webapps/swat/source/class/swat/module/ldbbrowse/Fsm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'webapps/swat/source/class') 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"); -- cgit