aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-08-21 17:16:57 -0700
committerfriendica <info@friendica.com>2013-08-21 17:16:57 -0700
commit3fbf5776384f4f2b8bbb43f6f8cfad26a0cf42dc (patch)
tree8a463a0fec6e0295b8f819995bdfa957b317407c /mod
parent2d3a489f5171a8fe8b6b7aeb022c945a689d9f1a (diff)
parentf2545c0b8defd81ec2add5e97d2df41d5eba15fc (diff)
downloadvolse-hubzilla-3fbf5776384f4f2b8bbb43f6f8cfad26a0cf42dc.tar.gz
volse-hubzilla-3fbf5776384f4f2b8bbb43f6f8cfad26a0cf42dc.tar.bz2
volse-hubzilla-3fbf5776384f4f2b8bbb43f6f8cfad26a0cf42dc.zip
Merge https://github.com/friendica/red into zpull
Diffstat (limited to 'mod')
-rw-r--r--mod/admin.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/admin.php b/mod/admin.php
index df1a40019..7e8f7a301 100644
--- a/mod/admin.php
+++ b/mod/admin.php
@@ -365,11 +365,11 @@ function admin_page_site(&$a) {
if($files) {
foreach($files as $file) {
$f = basename($file);
- $theme_name = ((file_exists($file . '/.experimental')) ? sprintf("%s - Experimental", $f) : $f);
- if (file_exists($file . '/.mobile')) {
+ $theme_name = ((file_exists($file . '/experimental')) ? sprintf("%s - Experimental", $f) : $f);
+ if (file_exists($file . '/mobile')) {
$theme_choices_mobile[$f] = $theme_name;
}
- if (file_exists($file . '/.accessibility')) {
+ if (file_exists($file . '/accessibility')) {
$theme_choices_accessibility[$f] = $theme_name;
}
$theme_choices[$f] = $theme_name;