diff options
author | Zvi ben Yaakov (a.k.a rdc) <coderzvi@infosoc.net> | 2012-06-21 13:38:14 +0300 |
---|---|---|
committer | Zvi ben Yaakov (a.k.a rdc) <coderzvi@infosoc.net> | 2012-06-21 13:38:14 +0300 |
commit | 5e3e3915e347e4c298498ce0a8c493b9cd03201b (patch) | |
tree | 5a7aabb78964ab82caebac84299015af4f87882d /boot.php | |
parent | d20cdf09eafbc57c1b6dbcb78a5cdaa731ae876d (diff) | |
parent | 53c9ea760659b39deeab9cff5d4f26d5abd63d31 (diff) | |
download | volse-hubzilla-5e3e3915e347e4c298498ce0a8c493b9cd03201b.tar.gz volse-hubzilla-5e3e3915e347e4c298498ce0a8c493b9cd03201b.tar.bz2 volse-hubzilla-5e3e3915e347e4c298498ce0a8c493b9cd03201b.zip |
Merge git://github.com/friendica/friendica
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 14 |
1 files changed, 3 insertions, 11 deletions
@@ -10,7 +10,7 @@ require_once('include/nav.php'); require_once('include/cache.php'); define ( 'FRIENDICA_PLATFORM', 'Friendica'); -define ( 'FRIENDICA_VERSION', '3.0.1378' ); +define ( 'FRIENDICA_VERSION', '3.0.1380' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DB_UPDATE_VERSION', 1149 ); @@ -78,14 +78,6 @@ define ( 'CONTACT_IS_FRIEND', 3); /** - * Hook array order - */ - -define ( 'HOOK_HOOK', 0); -define ( 'HOOK_FILE', 1); -define ( 'HOOK_FUNCTION', 2); - -/** * DB update return values */ @@ -1392,7 +1384,7 @@ if(! function_exists('proc_run')) { if(! function_exists('current_theme')) { function current_theme(){ - $app_base_themes = array('duepuntozero', 'loozah'); + $app_base_themes = array('duepuntozero', 'dispy', 'quattro'); $a = get_app(); @@ -1410,7 +1402,7 @@ if(! function_exists('current_theme')) { return($t); } - $fallback = glob('view/theme/*/style.[css|php]'); + $fallback = array_merge(glob('view/theme/*/style.css'),glob('view/theme/*/style.php')); if(count($fallback)) return (str_replace('view/theme/','', substr($fallback[0],0,-10))); |