aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorThomas Willingham <founder@kakste.com>2012-08-06 19:31:37 +0100
committerThomas Willingham <founder@kakste.com>2012-08-06 19:31:37 +0100
commit6fa7fa5ae8ad1b8e7b1854c17e490b7aaae0fcfb (patch)
treeaf9a301aa541138ae4958fe79c3b6ea6646633fa /mod
parente6763be5f32282296c4a76a126d6b67628dbdd04 (diff)
downloadvolse-hubzilla-6fa7fa5ae8ad1b8e7b1854c17e490b7aaae0fcfb.tar.gz
volse-hubzilla-6fa7fa5ae8ad1b8e7b1854c17e490b7aaae0fcfb.tar.bz2
volse-hubzilla-6fa7fa5ae8ad1b8e7b1854c17e490b7aaae0fcfb.zip
get_theme_config_file
Diffstat (limited to 'mod')
-rw-r--r--mod/settings.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/mod/settings.php b/mod/settings.php
index 5e8c78ae7..7c944a149 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -5,12 +5,12 @@ function get_theme_config_file($theme){
$a = get_app();
$base_theme = $a->theme_info['extends'];
- if (file_exists("view/theme/$theme/config.php")){
- return "view/theme/$theme/config.php";
+ if (file_exists("view/theme/$theme/php/config.php")){
+ return "view/theme/$theme/php/config.php";
}
- if (file_exists("view/theme/$base_theme/config.php")){
- return "view/theme/$base_theme/config.php";
- }
+ //if (file_exists("view/theme/$base_theme/php/config.php")){
+ // return "view/theme/$base_theme/php/config.php";
+ //}
return null;
}