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.
This commit is contained in:
parent
3ae3658411
commit
c052d68828
32 changed files with 86 additions and 86 deletions
|
|
@ -29,7 +29,7 @@ function directory_content(&$a) {
|
|||
else
|
||||
$search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
|
||||
|
||||
$tpl = load_view_file('view/directory_header.tpl');
|
||||
$tpl = file_get_contents('view/directory_header.tpl');
|
||||
|
||||
$globaldir = '';
|
||||
$gdirpath = dirname(get_config('system','directory_submit_url'));
|
||||
|
|
@ -65,7 +65,7 @@ function directory_content(&$a) {
|
|||
);
|
||||
if(count($r)) {
|
||||
|
||||
$tpl = load_view_file('view/directory_item.tpl');
|
||||
$tpl = file_get_contents('view/directory_item.tpl');
|
||||
|
||||
if(in_array('small', $a->argv))
|
||||
$photo = 'thumb';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue