Index: trunk/phase3/includes/media/Generic.php |
— | — | @@ -195,11 +195,19 @@ |
196 | 196 | return false; |
197 | 197 | } |
198 | 198 | |
| 199 | + /** |
| 200 | + * @fixme document this! |
| 201 | + * 'value' thingy goes into a wikitext table; it used to be escaped but |
| 202 | + * that was incompatible with previous practice of customized display |
| 203 | + * with wikitext formatting via messages such as 'exif-model-value'. |
| 204 | + * So the escaping is taken back out, but generally this seems a confusing |
| 205 | + * interface. |
| 206 | + */ |
199 | 207 | protected static function addMeta( &$array, $visibility, $type, $id, $value, $param = false ) { |
200 | 208 | $array[$visibility][] = array( |
201 | 209 | 'id' => "$type-$id", |
202 | 210 | 'name' => wfMsg( "$type-$id", $param ), |
203 | | - 'value' => wfEscapeWikiText( $value ) |
| 211 | + 'value' => $value |
204 | 212 | ); |
205 | 213 | } |
206 | 214 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -411,6 +411,7 @@ |
412 | 412 | available databases in installer |
413 | 413 | * Resizing transparent GIF images with GD now retains transparency by skipping |
414 | 414 | resampling |
| 415 | +* (bug 11065) Fix regression in handling of wiki-formatted EXIF metadata |
415 | 416 | |
416 | 417 | |
417 | 418 | == API changes since 1.10 == |