couple more places where file_get_contents was used

This commit is contained in:
Zach Prezkuta 2012-12-23 19:29:19 -07:00
parent 232deadfd2
commit fdd9ed7e51
2 changed files with 3 additions and 3 deletions

View File

@ -184,7 +184,7 @@ function dispy_community_info() {
$url = $a->get_baseurl($ssl_state);
$aside['$url'] = $url;
$tpl = file_get_contents(dirname(__file__) . '/communityhome.tpl');
$tpl = get_markup_template('communityhome.tpl');
return $a->page['aside_bottom'] = replace_macros($tpl, $aside);
}
@ -195,7 +195,7 @@ if(! function_exists('_js_in_foot')) {
$a = get_app();
$baseurl = $a->get_baseurl($ssl_state);
$bottom['$baseurl'] = $baseurl;
$tpl = file_get_contents(dirname(__file__) . '/bottom.tpl');
$tpl = get_markup_template('bottom.tpl');
return $a->page['bottom'] = replace_macros($tpl, $bottom);
}

View File

@ -117,7 +117,7 @@ if(! function_exists('_js_in_foot')) {
$ssl_state = null;
$baseurl = $a->get_baseurl($ssl_state);
$bottom['$baseurl'] = $baseurl;
$tpl = file_get_contents(dirname(__file__) . '/bottom.tpl');
$tpl = get_markup_template('bottom.tpl');
return $a->page['bottom'] = replace_macros($tpl, $bottom);
}