#loglevel 256
loglevel 0
+# Don't set a limit n returned result sets
+sizelimit -1
+
#######################################################################
# ldbm database definitions
#######################################################################
$__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__);
}
{if $LDAPERRORS != ''}
<div class="ldaperror" onclick="this.style.display = 'none'">
<h3>{$lang.err_ldap}</h3>
- <p>{$LDAPERRORS|escape}</p>
+ <p>{$LDAPERRORS}</p>
</div>
{/if}