summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 51a332d)
raw | patch | inline | side by side (parent: 51a332d)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 21 May 2007 11:34:41 +0000 (11:34 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Mon, 21 May 2007 11:34:41 +0000 (11:34 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@6421 594d385d-05f5-0310-b6e9-bd551577e9d8
include/functions.inc | patch | blob | history | |
include/smarty/plugins/block.render.php | patch | blob | history |
diff --git a/include/functions.inc b/include/functions.inc
index ef1139f16f2b37c03dc019df0bfae0ce665942e1..5344d6780ad91b4d2f19a04ea5bd847179f5797b 100644 (file)
--- a/include/functions.inc
+++ b/include/functions.inc
define ("DEBUG_POST", 16);
define ("DEBUG_SESSION",32);
define ("DEBUG_CONFIG", 64);
+define ("DEBUG_ACL", 128);
/* Rewrite german 'umlauts' and spanish 'accents'
to get better results */
index dd26c6fd2bad76f4a8c8e454fae037455d5ffae3..63e02b68f6d1e9b25ec20111329f078844435ca9 100755 (executable)
unset($params['acl']);
}
- echo "<font color='blue' size='2'> ".$acl."</font>";
+ if (isset($_SESSION['DEBUGLEVEL']) && $_SESSION['DEBUGLEVEL'] & DEBUG_ACL ){
+ echo "<font color='blue' size='2'> ".$acl."</font>";
+ }
/* Read / Write*/
if(preg_match("/w/i",$acl)){
"\\1 \\2");
$text = preg_replace($from,$to,$text);
$text = preg_replace("/GOSA_LINE_BREAK/","\n",$text);
+
return $text;
}