mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
Merge branch '3.2.x'
This commit is contained in:
commit
08e1a7a9e1
1 changed files with 2 additions and 1 deletions
|
@ -201,7 +201,8 @@ class context
|
|||
$pos = strpos($blocks[$i], '[');
|
||||
$name = ($pos !== false) ? substr($blocks[$i], 0, $pos) : $blocks[$i];
|
||||
$block = &$block[$name];
|
||||
$index = (!$pos || strpos($blocks[$i], '[]') === $pos) ? (count($block) - 1) : (min((int) substr($blocks[$i], $pos + 1, -1), count($block) - 1));
|
||||
$block_count = empty($block) ? 0 : count($block) - 1;
|
||||
$index = (!$pos || strpos($blocks[$i], '[]') === $pos) ? $block_count : (min((int) substr($blocks[$i], $pos + 1, -1), $block_count));
|
||||
$block = &$block[$index];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue