path to default.php in theme dir was incorrect

This commit is contained in:
friendica 2012-04-10 01:51:53 -07:00
parent 9a8c69b024
commit 4c3b835307
1 changed files with 2 additions and 2 deletions

View File

@ -360,13 +360,13 @@ $profile = $a->profile;
header("Content-type: text/html; charset=utf-8");
$template = 'view/' . current_theme() . '/'
$template = 'view/theme/' . current_theme() . '/'
. ((x($a->page,'template')) ? $a->page['template'] : 'default' ) . '.php';
if(file_exists($template))
require_once($template);
else
require_once(str_replace(current_theme() . '/', '', $template));
require_once(str_replace('theme/' . current_theme() . '/', '', $template));
session_write_close();
exit;