1
0
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:
Meik Sievertsen
2004-01-10 12:23:24 +00:00
parent 62429cb9fb
commit 994973d8ee
5 changed files with 1744 additions and 2 deletions

View File

@@ -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
{