mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 05:50:42 +02:00
custom profile fields.
Not finished, committed to let us discuss about the next steps -> BartVB git-svn-id: file:///svn/phpbb/trunk@4740 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -112,13 +112,13 @@ class template
|
||||
|
||||
|
||||
// Methods for loading and evaluating the templates
|
||||
function display($handle)
|
||||
function display($handle, $include_once = true)
|
||||
{
|
||||
global $user;
|
||||
|
||||
if ($filename = $this->_tpl_load($handle))
|
||||
{
|
||||
include_once($filename);
|
||||
($include_once) ? include_once($filename) : include($filename);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Reference in New Issue
Block a user