Index: trunk/phase3/includes/SpecialVersion.php |
— | — | @@ -118,9 +118,9 @@ |
119 | 119 | foreach ( $wgExtensionCredits[$type] as $extension ) { |
120 | 120 | $out .= $this->formatCredits( |
121 | 121 | isset ( $extension['name'] ) ? $extension['name'] : '', |
122 | | - isset ( $extension['version'] ) ? $extension['version'] : '', |
| 122 | + isset ( $extension['version'] ) ? $extension['version'] : null, |
123 | 123 | isset ( $extension['author'] ) ? $extension['author'] : '', |
124 | | - isset ( $extension['url'] ) ? $extension['url'] : '', |
| 124 | + isset ( $extension['url'] ) ? $extension['url'] : null, |
125 | 125 | isset ( $extension['description'] ) ? $extension['description'] : '' |
126 | 126 | ); |
127 | 127 | } |
— | — | @@ -193,7 +193,7 @@ |
194 | 194 | |
195 | 195 | foreach ($myWgHooks as $hook => $hooks) |
196 | 196 | $ret .= "<tr><td>$hook</td><td>" . $this->listToText( $hooks ) . "</td></tr>\n"; |
197 | | - |
| 197 | + |
198 | 198 | $ret .= '</table>'; |
199 | 199 | return $ret; |
200 | 200 | } else |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -37,6 +37,8 @@ |
38 | 38 | * (bugs 5051, 5376) Tooltips and accesskeys no longer require JavaScript |
39 | 39 | * Added SkinTemplateOutputPageBeforeExec hook before SkinTemplate::outputPage() |
40 | 40 | starts page output (http://lists.wikimedia.org/pipermail/wikitech-l/2007-January/028554.html) |
| 41 | +* Fix SpecialVersion->formatCredits input. Version and Url parameters should be null |
| 42 | + to be treated properly with isset. |
41 | 43 | |
42 | 44 | == Languages updated == |
43 | 45 | |