aboutsummaryrefslogtreecommitdiffstats
path: root/mod/admin.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-08-08 18:13:44 -0700
committerfriendica <info@friendica.com>2012-08-08 18:13:44 -0700
commit5c4246e6033fb1130aa0393878c36d5f3bbd4694 (patch)
tree4b0b3a7c7fe941cddbdb359d4a7e3384e6b33dd6 /mod/admin.php
parentc28da5673731acbedecb4209c38b72046db597e1 (diff)
parent29b8b8f82b72f646ea4c55d66766bd0e0c950657 (diff)
downloadvolse-hubzilla-5c4246e6033fb1130aa0393878c36d5f3bbd4694.tar.gz
volse-hubzilla-5c4246e6033fb1130aa0393878c36d5f3bbd4694.tar.bz2
volse-hubzilla-5c4246e6033fb1130aa0393878c36d5f3bbd4694.zip
Merge pull request #2 from beardy-unixer/master
More theme refactoring
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);
}