Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -2347,7 +2347,7 @@ |
2348 | 2348 | |
2349 | 2349 | if ( |
2350 | 2350 | $this->getTitle()->getNamespace() != NS_SPECIAL && |
2351 | | - !in_array( $action, array( 'edit', 'submit' ) ) && |
| 2351 | + in_array( $action, array( 'view', 'purge' ) ) && |
2352 | 2352 | $wgUser->getOption( 'editondblclick' ) |
2353 | 2353 | ) |
2354 | 2354 | { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -214,6 +214,8 @@ |
215 | 215 | * (bug 15641) Fixed positioning of permissions checks in Special:Import which |
216 | 216 | allowed users without the 'import' permission to import pages if they directly |
217 | 217 | submitted the form. |
| 218 | +* (bug 27893) Edit-on-doubleclick now applies only on view and purge actions; |
| 219 | + no longer triggers unexpectedly on delete, history etc. |
218 | 220 | |
219 | 221 | === API changes in 1.18 === |
220 | 222 | * (bug 26339) Throw warning when truncating an overlarge API result |