mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[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
This commit is contained in:
committed by
Nils Adermann
parent
d91abbb146
commit
ed9a58a6cc
@@ -22,28 +22,33 @@ if (!defined('IN_PHPBB'))
|
||||
class phpbb_style
|
||||
{
|
||||
/**
|
||||
* @var phpbb_template Template class.
|
||||
* Template class.
|
||||
* Handles everything related to templates.
|
||||
* @var phpbb_template
|
||||
*/
|
||||
private $template;
|
||||
|
||||
/**
|
||||
* @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;
|
||||
|
||||
|
Reference in New Issue
Block a user