Index: trunk/extensions/Push/Push.i18n.php |
— | — | @@ -36,8 +36,7 @@ |
37 | 37 | 'push-tab-title' => 'Push $1', |
38 | 38 | 'push-targets' => 'Push targets', |
39 | 39 | 'push-add-target' => 'Add target', |
40 | | - 'push-import-revision-message' => 'Pushed from $1 by $2. $3', |
41 | | - 'push-import-revision-comment' => 'Last comment: $1', |
| 40 | + 'push-import-revision-message' => 'Pushed from $1 by $2.', |
42 | 41 | 'push-tab-no-targets' => 'There are no targets to push to. Please add some to your LocalSettings.php file.', |
43 | 42 | 'push-tab-push-to' => 'Push to $1', |
44 | 43 | 'push-remote-pages' => 'Remote pages', |
— | — | @@ -85,7 +84,6 @@ |
86 | 85 | */ |
87 | 86 | $messages['qqq'] = array( |
88 | 87 | 'push-err-authentication' => '$1: wiki name, $2: optional detailed error message', |
89 | | - 'push-import-revision-message' => '$3 is [[MediaWiki:Push-import-revision-comment]] or empty.', |
90 | 88 | 'push-remote-page-link' => '$1: page name, $2: wiki name', |
91 | 89 | 'push-remote-page-link-full' => '$1: page name, $2: wiki name', |
92 | 90 | ); |
Index: trunk/extensions/Push/Push.php |
— | — | @@ -73,7 +73,6 @@ |
74 | 74 | 'push-button-completed', |
75 | 75 | 'push-button-failed', |
76 | 76 | 'push-import-revision-message', |
77 | | - 'push-import-revision-comment', |
78 | 77 | 'push-button-text', |
79 | 78 | 'push-button-all', |
80 | 79 | 'push-special-item-pushing', |
Index: trunk/extensions/Push/api/ApiPush.php |
— | — | @@ -322,8 +322,7 @@ |
323 | 323 | 'push-import-revision-message', |
324 | 324 | 'parsemag', |
325 | 325 | $wgSitename, |
326 | | - $revision['user'], |
327 | | - $revision['comment'] == '' ? '' : wfMsgExt( 'push-import-revision-comment', 'parsemag', $revision['comment'] ) |
| 326 | + $revision['user'] |
328 | 327 | ); |
329 | 328 | |
330 | 329 | $requestData = array( |