Index: trunk/extensions/Translate/specials/SpecialManageGroups.php |
— | — | @@ -88,7 +88,9 @@ |
89 | 89 | |
90 | 90 | wfDebug( __METHOD__ . ": {$group->getId()}\n" ); |
91 | 91 | |
92 | | - $link = $this->skin->link( $this->getTitle(), $group->getLabel(), array(), array( 'group' => $group->getId() ) ); |
| 92 | + $id = $group->getId(); |
| 93 | + $link = $this->skin->link( $this->getTitle(), $group->getLabel(), |
| 94 | + array( 'id' => "mw-group-$id" ), array( 'group' => $id ) ); |
93 | 95 | $out = $link . $separator; |
94 | 96 | |
95 | 97 | $cache = new MessageGroupCache( $group ); |
— | — | @@ -139,7 +141,7 @@ |
140 | 142 | protected function rebuildButton( $group, $codes, $from ) { |
141 | 143 | $formParams = array( |
142 | 144 | 'method' => 'post', |
143 | | - 'action' => $this->getTitle()->getLocalURL(), |
| 145 | + 'action' => $this->getTitle()->getLocalURL() . '#mw-group-' . $group->getId(), |
144 | 146 | ); |
145 | 147 | |
146 | 148 | $html = |