aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-10-29 17:52:38 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-11-21 23:59:29 +0100
commitc174862b7ed668b6f898b0b07ff9cae7a69357d0 (patch)
tree52578740bd4331885301699ff78bc872067dbbcd
parent7c683608ab0714dd78eed66b49725d6b3efed6f9 (diff)
downloadforums-c174862b7ed668b6f898b0b07ff9cae7a69357d0.tar
forums-c174862b7ed668b6f898b0b07ff9cae7a69357d0.tar.gz
forums-c174862b7ed668b6f898b0b07ff9cae7a69357d0.tar.bz2
forums-c174862b7ed668b6f898b0b07ff9cae7a69357d0.tar.xz
forums-c174862b7ed668b6f898b0b07ff9cae7a69357d0.zip
[ticket/10744] Fix some doc blocks
PHPBB3-10744
-rw-r--r--phpBB/includes/acp/acp_styles.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_styles.php b/phpBB/includes/acp/acp_styles.php
index 78cab57446..6bd27a8bca 100644
--- a/phpBB/includes/acp/acp_styles.php
+++ b/phpBB/includes/acp/acp_styles.php
@@ -29,6 +29,7 @@ class acp_styles
protected $styles_path;
protected $styles_path_absolute = 'styles';
protected $default_style = 0;
+ protected $styles_list_cols = 0;
protected $reserved_style_names = array('adm', 'admin', 'all');
/** @var \phpbb\db\driver\driver_interface */
@@ -831,7 +832,7 @@ class acp_styles
* Update styles tree
*
* @param array $styles Styles list, passed as reference
- * @param array $style Current style, false if root
+ * @param array|false $style Current style, false if root
* @return bool True if something was updated, false if not
*/
protected function update_styles_tree(&$styles, $style = false)
@@ -1113,7 +1114,7 @@ class acp_styles
/**
* Install style
*
- * @param $style style data
+ * @param array $style style data
* @return int Style id
*/
protected function install_style($style)