diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-14 23:04:10 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-14 23:04:10 -0700 |
commit | d20e1a6f938d088708166e039ae0088a8ddf11e4 (patch) | |
tree | 7fa25d32ca357cd04debe066956f9a44f56e5206 /boot.php | |
parent | 43f8dd680234239f2cf6e0d62a12aa32aacf5b16 (diff) | |
download | volse-hubzilla-d20e1a6f938d088708166e039ae0088a8ddf11e4.tar.gz volse-hubzilla-d20e1a6f938d088708166e039ae0088a8ddf11e4.tar.bz2 volse-hubzilla-d20e1a6f938d088708166e039ae0088a8ddf11e4.zip |
feed related
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -424,4 +424,16 @@ function paginate(&$a) { $o .= '</div>'."\r\n"; } return $o; -}
\ No newline at end of file +} + +function expand_acl($s) { + + if(strlen($s)) { + $a = explode('<',$s); + for($x = 0; $x < count($a); $x ++) { + $a[$x] = intval(str_replace(array('<','>'),array('',''),$a[$x])); + } + return $a; + } + return array(); +} |