mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-11 16:59:09 +00:00
Allow numeric headers in Sidebar
A numeric string set as key of an array gets casted to an integer. Since I458c0af3114754ddf3d721f6c374e249f482e4cf wfMessage does not except integer as message key, therefore cast the heading name back to string. Bug: T73639 Change-Id: I376fb49d03251a71372738c531a09f014540b958
This commit is contained in:
parent
36186ed0af
commit
1ba842a765
|
@ -282,6 +282,9 @@ class VectorTemplate extends BaseTemplate {
|
|||
continue;
|
||||
}
|
||||
|
||||
// Numeric strings gets an integer when set as key, cast back - T73639
|
||||
$name = (string)$name;
|
||||
|
||||
switch ( $name ) {
|
||||
case 'SEARCH':
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue