diff options
author | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-12-12 15:28:11 +0000 |
---|---|---|
committer | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-12-12 15:28:11 +0000 |
commit | 13b50610d647e2a6984450f19925d1085d826795 (patch) | |
tree | 09475f95d524f23d2e8b62561d9e06ca0297b09a | |
parent | b30ea4c2c51f893bf0cffbea38e875cb01c6c431 (diff) | |
download | volse-hubzilla-13b50610d647e2a6984450f19925d1085d826795.tar.gz volse-hubzilla-13b50610d647e2a6984450f19925d1085d826795.tar.bz2 volse-hubzilla-13b50610d647e2a6984450f19925d1085d826795.zip |
Fix WSOD on login
-rwxr-xr-x | boot.php | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1514,9 +1514,11 @@ function login($register = false, $form_id = 'main-login', $hiddens=false) { $tpl = get_markup_template("logout.tpl"); } else { - $a->page['htmlhead'] .= replace_macros(get_markup_template("login_head.tpl"), array( - '$baseurl' => $a->get_baseurl(true) - )); +// There's no such thing as login_head.tpl, has never been in Red, removed from Friendica 1 Jun 2013... + +// $a->page['htmlhead'] .= replace_macros(get_markup_template("login_head.tpl"), array( +// '$baseurl' => $a->get_baseurl(true) +// )); $tpl = get_markup_template("login.tpl"); if(strlen($a->query_string)) |