|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-07-09 17:19 UTC] irker@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 08 11:00:01 2025 UTC |
on line 475, inside the getBlockvariables() method is missing a very important few chars that specify *which* block's vars to list. the existing code returns an array of block names: ** old code ** foreach(foreach ($this->blockvariables as $variable => $v){ ** /old code ** should be: ** new code ** foreach(foreach ($this->blockvariables[$block] as $variable => $v){ ** /new code **