aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/template/template.php
diff options
context:
space:
mode:
authorVjacheslav Trushkin <arty@phpbb.com>2012-04-03 14:32:49 +0300
committerNils Adermann <naderman@naderman.de>2012-04-19 04:25:25 +0200
commited9a58a6ccea5b9b2685488ff0cfc45f0ccdbeb5 (patch)
tree1c878e214a186bab387d4b045be98e79d3f8f7c0 /phpBB/includes/template/template.php
parentd91abbb146d3a808764bf19b9e6adc6e14db1751 (diff)
downloadforums-ed9a58a6ccea5b9b2685488ff0cfc45f0ccdbeb5.tar
forums-ed9a58a6ccea5b9b2685488ff0cfc45f0ccdbeb5.tar.gz
forums-ed9a58a6ccea5b9b2685488ff0cfc45f0ccdbeb5.tar.bz2
forums-ed9a58a6ccea5b9b2685488ff0cfc45f0ccdbeb5.tar.xz
forums-ed9a58a6ccea5b9b2685488ff0cfc45f0ccdbeb5.zip
[ticket/10756] Fixing variable declarations in style and template classes
Fixing variable declaration, removing function from template locator that does not belong there PHPBB3-10756
Diffstat (limited to 'phpBB/includes/template/template.php')
-rw-r--r--phpBB/includes/template/template.php18
1 files changed, 12 insertions, 6 deletions
diff --git a/phpBB/includes/template/template.php b/phpBB/includes/template/template.php
index 0a3e992b03..e6512c8417 100644
--- a/phpBB/includes/template/template.php
+++ b/phpBB/includes/template/template.php
@@ -32,33 +32,39 @@ if (!defined('IN_PHPBB'))
class phpbb_template
{
/**
- * @var phpbb_template_context Template context.
+ * Template context.
* Stores template data used during template rendering.
+ * @var phpbb_template_context
*/
public $context;
/**
- * @var string Path of the cache directory for the template
+ * Path of the cache directory for the template
+ * @var string
*/
public $cachepath = '';
/**
- * @var string phpBB root path
+ * phpBB root path
+ * @var string
*/
private $phpbb_root_path;
/**
- * @var phpEx PHP file extension
+ * PHP file extension
+ * @var string
*/
private $phpEx;
/**
- * @var phpbb_config phpBB config instance
+ * phpBB config instance
+ * @var phpbb_config
*/
private $config;
/**
- * @var user current user
+ * Current user
+ * @var phpbb_user
*/
private $user;