aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/template.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-08-22 21:26:06 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-08-22 21:26:06 +0000
commit1d42d1b9817050974c8bc8b91bc34a6c3cfbfef8 (patch)
treea5788f8c1db67b7ea6cfb870b1400e28df15ee3a /phpBB/includes/template.php
parentb0afc8e6320598734ae20e664be9f840ca501f91 (diff)
downloadforums-1d42d1b9817050974c8bc8b91bc34a6c3cfbfef8.tar
forums-1d42d1b9817050974c8bc8b91bc34a6c3cfbfef8.tar.gz
forums-1d42d1b9817050974c8bc8b91bc34a6c3cfbfef8.tar.bz2
forums-1d42d1b9817050974c8bc8b91bc34a6c3cfbfef8.tar.xz
forums-1d42d1b9817050974c8bc8b91bc34a6c3cfbfef8.zip
some updates. Also adjusted the utf tools and normalizer more to our coding guidelines.
git-svn-id: file:///svn/phpbb/trunk@6312 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/template.php')
-rw-r--r--phpBB/includes/template.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/phpBB/includes/template.php b/phpBB/includes/template.php
index 5281860ac5..abacd2d118 100644
--- a/phpBB/includes/template.php
+++ b/phpBB/includes/template.php
@@ -39,7 +39,7 @@ class template
/**
* Set template location
- * @access: public
+ * @access public
*/
function set_template()
{
@@ -60,7 +60,7 @@ class template
/**
* Set custom template location (able to use directory outside of phpBB)
- * @access: public
+ * @access public
*/
function set_custom_template($template_path, $template_name)
{
@@ -75,7 +75,7 @@ class template
/**
* Sets the template filenames for handles. $filename_array
* should be a hash of handle => filename pairs.
- * @access: public
+ * @access public
*/
function set_filenames($filename_array)
{
@@ -100,7 +100,7 @@ class template
/**
* Destroy template data set
- * @access: public
+ * @access public
*/
function destroy()
{
@@ -109,7 +109,7 @@ class template
/**
* Reset/empty complete block
- * @access: public
+ * @access public
*/
function destroy_block_vars($blockname)
{
@@ -139,7 +139,7 @@ class template
/**
* Display handle
- * @access: public
+ * @access public
*/
function display($handle, $include_once = true)
{
@@ -159,7 +159,7 @@ class template
/**
* Display the handle and assign the output to a template variable or return the compiled result.
- * @access: public
+ * @access public
*/
function assign_display($handle, $template_var = '', $return_content = true, $include_once = false)
{
@@ -179,7 +179,7 @@ class template
/**
* Load a compiled template if possible, if not, recompile it
- * @access: private
+ * @access private
*/
function _tpl_load(&$handle)
{
@@ -271,7 +271,7 @@ class template
/**
* Assign key variable pairs from an array
- * @access: public
+ * @access public
*/
function assign_vars($vararray)
{
@@ -285,7 +285,7 @@ class template
/**
* Assign a single variable to a single key
- * @access: public
+ * @access public
*/
function assign_var($varname, $varval)
{
@@ -296,7 +296,7 @@ class template
/**
* Assign key variable pairs from an array to a specified block
- * @access: public
+ * @access public
*/
function assign_block_vars($blockname, $vararray)
{
@@ -398,7 +398,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
- * @access: public
+ * @access public
*/
function alter_block_array($blockname, $vararray, $key = false, $mode = 'insert')
{
@@ -484,7 +484,7 @@ class template
/**
* Include a seperate template
- * @access: private
+ * @access private
*/
function _tpl_include($filename, $include = true)
{