diff options
author | Friendika <info@friendika.com> | 2011-05-10 16:12:50 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-05-10 16:12:50 -0700 |
commit | c052d688284fda76c612325b237d8352f2abb5d4 (patch) | |
tree | 7867f7a67b96f715644c2f4b9d1bc84a7371ebfc /mod/dfrn_request.php | |
parent | 3ae36584110af2acd4a0f4805dd078da30732a1d (diff) | |
download | volse-hubzilla-c052d688284fda76c612325b237d8352f2abb5d4.tar.gz volse-hubzilla-c052d688284fda76c612325b237d8352f2abb5d4.tar.bz2 volse-hubzilla-c052d688284fda76c612325b237d8352f2abb5d4.zip |
don't use load_view_file() except in email templates and install of htconfig - to avoid getting wrong file when package is updated by copying over an older version.
Diffstat (limited to 'mod/dfrn_request.php')
-rw-r--r-- | mod/dfrn_request.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/dfrn_request.php b/mod/dfrn_request.php index 1af0dc85d..f1807c738 100644 --- a/mod/dfrn_request.php +++ b/mod/dfrn_request.php @@ -499,7 +499,7 @@ function dfrn_request_content(&$a) { $dfrn_url = notags(trim(hex2bin($_GET['dfrn_url']))); $aes_allow = (((x($_GET,'aes_allow')) && ($_GET['aes_allow'] == 1)) ? 1 : 0); $confirm_key = (x($_GET,'confirm_key') ? $_GET['confirm_key'] : ""); - $o .= load_view_file("view/dfrn_req_confirm.tpl"); + $o .= file_get_contents("view/dfrn_req_confirm.tpl"); $o = replace_macros($o,array( '$dfrn_url' => $dfrn_url, '$aes_allow' => (($aes_allow) ? '<input type="hidden" name="aes_allow" value="1" />' : "" ), @@ -622,9 +622,9 @@ function dfrn_request_content(&$a) { */ if($a->profile['page-flags'] == PAGE_NORMAL) - $tpl = load_view_file('view/dfrn_request.tpl'); + $tpl = file_get_contents('view/dfrn_request.tpl'); else - $tpl = load_view_file('view/auto_request.tpl'); + $tpl = file_get_contents('view/auto_request.tpl'); $o .= replace_macros($tpl,array( '$header' => t('Friend/Connection Request'), |