]> git.mxchange.org Git - friendica.git/commitdiff
path to default.php in theme dir was incorrect
authorfriendica <info@friendica.com>
Tue, 10 Apr 2012 08:51:53 +0000 (01:51 -0700)
committerfriendica <info@friendica.com>
Tue, 10 Apr 2012 08:51:53 +0000 (01:51 -0700)
index.php

index 1cb16778a6d27d7242cf42dfa891c2f3b9506382..f0ed00232e17171458528530d02d055214fb8e6c 100644 (file)
--- a/index.php
+++ b/index.php
@@ -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;