steffen: server/kolab-resource-handlers/kolab-resource-handlers/resmgr resmgr.php, 1.67, 1.68

cvs at intevation.de cvs at intevation.de
Thu May 12 22:18:59 CEST 2005


Author: steffen

Update of /kolabrepository/server/kolab-resource-handlers/kolab-resource-handlers/resmgr
In directory doto:/tmp/cvs-serv9049

Modified Files:
	resmgr.php 
Log Message:
Fix for Issue744 (invitation policy not case independent)

Index: resmgr.php
===================================================================
RCS file: /kolabrepository/server/kolab-resource-handlers/kolab-resource-handlers/resmgr/resmgr.php,v
retrieving revision 1.67
retrieving revision 1.68
diff -u -d -r1.67 -r1.68
--- resmgr.php	2 Apr 2005 02:47:34 -0000	1.67
+++ resmgr.php	12 May 2005 20:18:57 -0000	1.68
@@ -202,7 +202,7 @@
     foreach( $actions as $action ) {
       if( ereg( '(.*):(.*)', $action, $regs ) ) {
 	myLog('found policy '.$regs[1].':'.$regs[2], RM_LOG_DEBUG );
-	$policies[$regs[1]] = parseactionstring($regs[2]);
+	$policies[strtolower($regs[1])] = parseactionstring($regs[2]);
       } else {
 	$defaultpolicy = parseactionstring($action);
       }





More information about the commits mailing list