diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2006-06-13 21:06:29 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-06-13 21:06:29 +0000 |
| commit | 1aac08acc0df55fb5c323d91ae9c1f3d8c29535d (patch) | |
| tree | fd54bd12b4deb05526fe49559cc0e6c07b497ac5 /phpBB/includes/template.php | |
| parent | b0b796381741cef142d5f76c2571e081c90a1ed3 (diff) | |
| download | forums-1aac08acc0df55fb5c323d91ae9c1f3d8c29535d.tar forums-1aac08acc0df55fb5c323d91ae9c1f3d8c29535d.tar.gz forums-1aac08acc0df55fb5c323d91ae9c1f3d8c29535d.tar.bz2 forums-1aac08acc0df55fb5c323d91ae9c1f3d8c29535d.tar.xz forums-1aac08acc0df55fb5c323d91ae9c1f3d8c29535d.zip | |
make sure custom profile fields are created correctly on registration (#2225)
git-svn-id: file:///svn/phpbb/trunk@6058 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/template.php')
| -rw-r--r-- | phpBB/includes/template.php | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/phpBB/includes/template.php b/phpBB/includes/template.php index 5e7db9acda..1e1ad31193 100644 --- a/phpBB/includes/template.php +++ b/phpBB/includes/template.php @@ -16,8 +16,8 @@ if (!defined('IN_PHPBB')) } /** -* @package phpBB3 * Base Template class. +* @package phpBB3 */ class template { @@ -39,7 +39,7 @@ class template /** * Set template location - * @public + * @access: public */ function set_template() { @@ -56,7 +56,7 @@ class template /** * Set custom template location (able to use directory outside of phpBB) - * @public + * @access: public */ function set_custom_template($template_path, $template_name) { @@ -71,7 +71,7 @@ class template /** * Sets the template filenames for handles. $filename_array * should be a hash of handle => filename pairs. - * @public + * @access: public */ function set_filenames($filename_array) { @@ -96,7 +96,7 @@ class template /** * Destroy template data set - * @public + * @access: public */ function destroy() { @@ -105,7 +105,7 @@ class template /** * Reset/empty complete block - * @public + * @access: public */ function destroy_block_vars($blockname) { @@ -135,7 +135,7 @@ class template /** * Display handle - * @public + * @access: public */ function display($handle, $include_once = true) { @@ -155,7 +155,7 @@ class template /** * Display the handle and assign the output to a template variable or return the compiled result. - * @public + * @access: public */ function assign_display($handle, $template_var = '', $return_content = true, $include_once = false) { @@ -175,7 +175,7 @@ class template /** * Load a compiled template if possible, if not, recompile it - * @private + * @access: private */ function _tpl_load(&$handle) { @@ -267,7 +267,7 @@ class template /** * Assign key variable pairs from an array - * @public + * @access: public */ function assign_vars($vararray) { @@ -281,7 +281,7 @@ class template /** * Assign a single variable to a single key - * @public + * @access: public */ function assign_var($varname, $varval) { @@ -292,7 +292,7 @@ class template /** * Assign key variable pairs from an array to a specified block - * @public + * @access: public */ function assign_block_vars($blockname, $vararray) { @@ -394,7 +394,7 @@ class template * and inserting at position 1 will result in this array: array(first positioned array, vararray, following vars) * * @return false on error, true on success - * @public + * @access: public */ function alter_block_array($blockname, $vararray, $key = false, $mode = 'insert') { @@ -480,7 +480,7 @@ class template /** * Include a seperate template - * @private + * @access: private */ function _tpl_include($filename, $include = true) { |
