feed related
This commit is contained in:
parent
43f8dd6802
commit
d20e1a6f93
7 changed files with 215 additions and 63 deletions
14
boot.php
14
boot.php
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue