aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/avatar/driver/driver.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/phpBB/phpbb/avatar/driver/driver.php b/phpBB/phpbb/avatar/driver/driver.php
index d682d7d114..68c30d36a5 100644
--- a/phpBB/phpbb/avatar/driver/driver.php
+++ b/phpBB/phpbb/avatar/driver/driver.php
@@ -48,18 +48,18 @@ abstract class driver implements \phpbb\avatar\driver\driver_interface
protected $php_ext;
/**
- * Cache driver
- * @var \phpbb\cache\driver\driver_interface
- */
- protected $cache;
-
- /**
* Path Helper
* @var \phpbb\path_helper
*/
protected $path_helper;
/**
+ * Cache driver
+ * @var \phpbb\cache\driver\driver_interface
+ */
+ protected $cache;
+
+ /**
* Array of allowed avatar image extensions
* Array is used for setting the allowed extensions in the fileupload class
* and as a base for a regex of allowed extensions, which will be formed by
@@ -88,8 +88,8 @@ abstract class driver implements \phpbb\avatar\driver\driver_interface
$this->config = $config;
$this->phpbb_root_path = $phpbb_root_path;
$this->php_ext = $php_ext;
- $this->cache = $cache;
$this->path_helper = $path_helper;
+ $this->cache = $cache;
}
/**