db949bb802
Only define functions if they have not been defined before, e.g. in themes. This makes it possible to override parts of a module and still use the other functions.
11 lines
164 B
PHP
11 lines
164 B
PHP
<?php
|
|
/* ACL selector json backend */
|
|
|
|
require_once("include/acl_selectors.php");
|
|
|
|
if(! function_exists('acl_init')) {
|
|
function acl_init(&$a){
|
|
acl_lookup($a);
|
|
}
|
|
}
|