aboutsummaryrefslogtreecommitdiffstats
path: root/mod/admin.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-08-08 18:50:33 -0700
committerfriendica <info@friendica.com>2012-08-08 18:50:33 -0700
commit432595314affa179bdce439d6e90955cee99cd9e (patch)
tree4c5bbe70b336c5482b6a40469a93c828bab9a3e9 /mod/admin.php
parent9a39d4ade21af15e9d6a3aae1f467f0d173cc0de (diff)
parent5c4246e6033fb1130aa0393878c36d5f3bbd4694 (diff)
downloadvolse-hubzilla-432595314affa179bdce439d6e90955cee99cd9e.tar.gz
volse-hubzilla-432595314affa179bdce439d6e90955cee99cd9e.tar.bz2
volse-hubzilla-432595314affa179bdce439d6e90955cee99cd9e.zip
Merge https://github.com/friendica/red into zpull
Diffstat (limited to 'mod/admin.php')
-rw-r--r--mod/admin.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/admin.php b/mod/admin.php
index c8ed7a53b..44010efda 100644
--- a/mod/admin.php
+++ b/mod/admin.php
@@ -46,8 +46,8 @@ function admin_post(&$a){
break;
case 'themes':
$theme = $a->argv[2];
- if (is_file("view/theme/$theme/config.php")){
- require_once("view/theme/$theme/config.php");
+ if (is_file("view/theme/$theme/php/config.php")){
+ require_once("view/theme/$theme/php/config.php");
if (function_exists("theme_admin_post")){
theme_admin_post($a);
}
@@ -937,8 +937,8 @@ function admin_page_themes(&$a){
}
$admin_form="";
- if (is_file("view/theme/$theme/config.php")){
- require_once("view/theme/$theme/config.php");
+ if (is_file("view/theme/$theme/php/config.php")){
+ require_once("view/theme/$theme/php/config.php");
if(function_exists("theme_admin")){
$admin_form = theme_admin($a);
}