From 1adb7a2eefd55b95644997f87a64608f69672cab Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 9 Oct 2014 15:22:21 -0700 Subject: allow a site to over-ride the system app list without causing git issues --- include/apps.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/apps.php b/include/apps.php index 91012b0ef..cd0c2984e 100644 --- a/include/apps.php +++ b/include/apps.php @@ -11,7 +11,10 @@ require_once('include/identity.php'); function get_system_apps() { $ret = array(); - $files = glob('app/*.apd'); + if(is_dir('apps')) + $files = glob('apps/*.apd'); + else + $files = glob('app/*.apd'); if($files) { foreach($files as $f) { $x = parse_app_description($f); -- cgit v1.2.3