]> git.sur5r.net Git - contagged/commitdiff
added sizelimit info
authorAndreas Gohr <gohr@cosmocode.de>
Wed, 5 Dec 2007 16:03:31 +0000 (17:03 +0100)
committerAndreas Gohr <gohr@cosmocode.de>
Wed, 5 Dec 2007 16:03:31 +0000 (17:03 +0100)
darcs-hash:20071205160331-6e07b-2f5d97d50a9c8c7c588df186e6ad1aabc89fabdc.gz

doc/slapd.example
inc/template.php
templates/header.tpl

index 6545fffe4593a42ca7c225c56d346b7116466e4e..31ed6237abdcf494b12b208875d10ccaacda7be7 100644 (file)
@@ -27,6 +27,9 @@ replogfile  /var/lib/ldap/replog
 #loglevel        256
 loglevel    0
 
+# Don't set a limit n returned result sets
+sizelimit -1
+
 #######################################################################
 # ldbm database definitions
 #######################################################################
index 93095a182e60d956c1e892403f7769cd4431c76e..279ca4ca01b713bdc793d8f14c8eefe2a4d15fbd 100644 (file)
@@ -96,7 +96,10 @@ function tpl_ldaperror($message=""){
     $__LDAPERROR__ .= ldap_err2str($errno);
     if(!empty($message)){
       $__LDAPERROR__ .= "($message)";
+    }elseif($errno == 4){
+      $__LDAPERROR__ .= "(You need to increase this limit in your server config)";
     }
+    $__LDAPERROR__ .= '<br />';
   }
   $smarty->assign("LDAPERRORS",$__LDAPERROR__);
 }
index 224538e931c6339189597e502338747b31655c5f..e61f1a8167d9baec9ab9c074c75e204b5bfe846d 100644 (file)
@@ -42,7 +42,7 @@
     {if $LDAPERRORS != ''}
         <div class="ldaperror" onclick="this.style.display = 'none'">
             <h3>{$lang.err_ldap}</h3>
-            <p>{$LDAPERRORS|escape}</p>
+            <p>{$LDAPERRORS}</p>
         </div>
     {/if}