1
0
Fork 0

deprecate load_view_file

This commit is contained in:
Friendika 2011-05-11 04:37:13 -07:00
commit b2e92e0af3
36 changed files with 135 additions and 102 deletions

View file

@ -464,7 +464,7 @@ function item_post(&$a) {
if(($user['notify-flags'] & NOTIFY_COMMENT) && ($contact_record != $author)) {
require_once('bbcode.php');
$from = $author['name'];
$tpl = load_view_file('view/cmnt_received_eml.tpl');
$tpl = get_intltext_template('cmnt_received_eml.tpl');
$email_tpl = replace_macros($tpl, array(
'$sitename' => $a->config['sitename'],
'$siteurl' => $a->get_baseurl(),
@ -490,7 +490,7 @@ function item_post(&$a) {
if(($user['notify-flags'] & NOTIFY_WALL) && ($contact_record != $author)) {
require_once('bbcode.php');
$from = $author['name'];
$tpl = load_view_file('view/wall_received_eml.tpl');
$tpl = get_intltext_template('wall_received_eml.tpl');
$email_tpl = replace_macros($tpl, array(
'$sitename' => $a->config['sitename'],
'$siteurl' => $a->get_baseurl(),