1
1
Fork 0

feed related

This commit is contained in:
Mike Macgirvin 2010-07-14 23:04:10 -07:00
commit d20e1a6f93
7 changed files with 215 additions and 63 deletions

View file

@ -424,4 +424,16 @@ function paginate(&$a) {
$o .= '</div>'."\r\n";
}
return $o;
}
}
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();
}