diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2014-08-06 23:42:04 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2014-08-06 23:42:04 +0200 |
| commit | decc896bf5e028e3e86ade2db42937f9378e6b58 (patch) | |
| tree | c2be86a6bdfdf773505def49c1705687f205fb0e | |
| parent | 964bf0b9f511e454700d549f22c736e451c9a58c (diff) | |
| parent | 7755f5354f3f5ab951b24db6088b4bc4829a64c1 (diff) | |
| download | forums-decc896bf5e028e3e86ade2db42937f9378e6b58.tar forums-decc896bf5e028e3e86ade2db42937f9378e6b58.tar.gz forums-decc896bf5e028e3e86ade2db42937f9378e6b58.tar.bz2 forums-decc896bf5e028e3e86ade2db42937f9378e6b58.tar.xz forums-decc896bf5e028e3e86ade2db42937f9378e6b58.zip | |
Merge pull request #2799 from nickvergessen/ticket/12901
Ticket/12901 Wrong type hint in show_available_child_styles() doc block
| -rw-r--r-- | phpBB/includes/acp/acp_styles.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_styles.php b/phpBB/includes/acp/acp_styles.php index 4cc93e5670..2a02e3e845 100644 --- a/phpBB/includes/acp/acp_styles.php +++ b/phpBB/includes/acp/acp_styles.php @@ -804,7 +804,7 @@ class acp_styles * * @param array $styles Styles list, passed as reference * @param string $name Name of parent style - * @param string $level Styles tree level + * @param int $level Styles tree level */ protected function show_available_child_styles(&$styles, $name, $level) { @@ -888,7 +888,7 @@ class acp_styles * Show item in styles list * * @param array $style style row - * @param array $level style inheritance level + * @param int $level style inheritance level */ protected function list_style(&$style, $level) { |
