Theme admin menu.

This commit is contained in:
Thomas Willingham 2012-08-06 19:36:41 +01:00
parent 6fa7fa5ae8
commit fca25c1909

View File

@ -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);
}