]> git.mxchange.org Git - friendica.git/commitdiff
use theme directory for page templates, not language directory
authorfriendica <info@friendica.com>
Wed, 28 Mar 2012 01:39:52 +0000 (18:39 -0700)
committerfriendica <info@friendica.com>
Wed, 28 Mar 2012 01:39:52 +0000 (18:39 -0700)
index.php

index 5f6d74adb9be383a62e917542f1103f186273d81..0916ed8b10e2e4e3ff436d11d265950dbc02b8aa 100755 (executable)
--- a/index.php
+++ b/index.php
@@ -342,13 +342,13 @@ $profile = $a->profile;
 
 header("Content-type: text/html; charset=utf-8");
 
-$template = 'view/' . $lang . '/' 
+$template = 'view/' . current_theme() . '/' 
        . ((x($a->page,'template')) ? $a->page['template'] : 'default' ) . '.php';
 
 if(file_exists($template))
        require_once($template);
 else
-       require_once(str_replace($lang . '/', '', $template));
+       require_once(str_replace(current_theme() . '/', '', $template));
 
 session_write_close();
 exit;