aboutsummaryrefslogtreecommitdiffstats
path: root/mod/dfrn_request.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-05-10 16:12:50 -0700
committerFriendika <info@friendika.com>2011-05-10 16:12:50 -0700
commitc052d688284fda76c612325b237d8352f2abb5d4 (patch)
tree7867f7a67b96f715644c2f4b9d1bc84a7371ebfc /mod/dfrn_request.php
parent3ae36584110af2acd4a0f4805dd078da30732a1d (diff)
downloadvolse-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.php6
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'),