[Solar-svn] Revision 3142
pmjones at solarphp.com
pmjones at solarphp.com
Sat May 3 12:50:45 CDT 2008
fix missing 'or' boolean
Modified: trunk/Solar/Access/Adapter/File.php
===================================================================
--- trunk/Solar/Access/Adapter/File.php 2008-05-03 17:48:25 UTC (rev 3141)
+++ trunk/Solar/Access/Adapter/File.php 2008-05-03 17:50:45 UTC (rev 3142)
@@ -101,7 +101,7 @@
$info[1] == 'handle' && $info[2] == '+' && $handle || // any authenticated user
$info[1] == 'handle' && $info[2] == '*' || // any user (incl anon)
$info[1] == 'role' && in_array($info[2], $roles) || // direct role match
- $info[1] == 'role' && $info[2] == '*' // any role (incl anon)
+ $info[1] == 'role' && $info[2] == '*' || // any role (incl anon)
$info[1] == 'owner' ) { // content owner
// keep the line
More information about the Solar-svn
mailing list