aboutsummaryrefslogtreecommitdiffstats
path: root/mod/settings.php
diff options
context:
space:
mode:
authorSimon L'nu <simon.lnu@gmail.com>2012-04-22 22:22:52 -0400
committerSimon L'nu <simon.lnu@gmail.com>2012-04-22 22:22:52 -0400
commit29d7f260d7e6dc178862c6a6c16445ef9b3512e4 (patch)
tree3746742dc12c2863c61c4c7cba8f4f9666590e49 /mod/settings.php
parent75c228fa13d814c772db4e072dfc615eed29d206 (diff)
parent2170df897b9dc72b87cc104520f6a67ddfbb994f (diff)
downloadvolse-hubzilla-29d7f260d7e6dc178862c6a6c16445ef9b3512e4.tar.gz
volse-hubzilla-29d7f260d7e6dc178862c6a6c16445ef9b3512e4.tar.bz2
volse-hubzilla-29d7f260d7e6dc178862c6a6c16445ef9b3512e4.zip
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master: bug #388 - notify_comment received after post deleted don't allow non-existent themes as choices diabook-themes: bugfix diabook-themes: fixed youtube-bug and added "Info/Impressum" to footer api: add support for StatusNet-style media param to API Add a hook * master:
Diffstat (limited to 'mod/settings.php')
-rw-r--r--mod/settings.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/settings.php b/mod/settings.php
index 721468437..8c8b3062d 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -696,8 +696,8 @@ function settings_content(&$a) {
$allowed_themes_raw = explode(',',$allowed_themes_str);
$allowed_themes = array();
if(count($allowed_themes_raw))
- foreach($allowed_themes_raw as $x)
- if(strlen(trim($x)))
+ foreach($allowed_themes_raw as $x)
+ if(strlen(trim($x)) && is_dir("view/theme/$x"))
$allowed_themes[] = trim($x);