mirror of
https://github.com/friendica/friendica
synced 2024-11-13 03:02:53 +00:00
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.
10 lines
164 B
PHP
10 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);
|
|
}
|
|
}
|