Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -2367,7 +2367,9 @@ |
2368 | 2368 | $this->getUser()->getOption( 'editondblclick' ) |
2369 | 2369 | ) |
2370 | 2370 | { |
2371 | | - $bodyAttrs['ondblclick'] = "document.location = '" . Xml::escapeJsString( $this->getTitle()->getEditURL() ) . "'"; |
| 2371 | + $editUrl = $this->getTitle()->getLocalUrl( $sk->editUrlOptions() ); |
| 2372 | + $bodyAttrs['ondblclick'] = "document.location = '" . |
| 2373 | + Xml::escapeJsString( $editUrl ) . "'"; |
2372 | 2374 | } |
2373 | 2375 | |
2374 | 2376 | # Class bloat |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -232,6 +232,7 @@ |
233 | 233 | * (bug 28306) Fix exposure of suppressed usernames in ForeignDBRepo |
234 | 234 | * (bug 28372) Fix bogus link to suppressed file versions in ForeignDBRepo |
235 | 235 | * (bug 27473) Fix regression: bold, italic no longer interfere with linktrail for ca, kaa |
| 236 | +* (bug 28444) Fix regression: edit-on-doubleclick retains revision id again |
236 | 237 | |
237 | 238 | === API changes in 1.18 === |
238 | 239 | * (bug 26339) Throw warning when truncating an overlarge API result |