Index: trunk/extensions/WikiForum/WikiForum.i18n.php |
— | — | @@ -65,11 +65,6 @@ |
66 | 66 | 'wikiforum-thread-title' => 'Title of your thread', |
67 | 67 | 'wikiforum-no-threads' => 'No threads are available at the moment.', |
68 | 68 | |
69 | | - 'wikiforum-edit' => 'edit', |
70 | | - 'wikiforum-close' => 'close', |
71 | | - 'wikiforum-delete' => 'delete', |
72 | | - 'wikiforum-reopen' => 'reopen', |
73 | | - |
74 | 69 | 'wikiforum-posted' => 'Posted at $1 by $2', |
75 | 70 | 'wikiforum-edited' => 'Edited at $1 by $2', |
76 | 71 | 'wikiforum-closed-text' => 'Thread was closed at $1 by $2', |
Index: trunk/extensions/WikiForum/WikiForumClass.php |
— | — | @@ -2248,18 +2248,10 @@ |
2249 | 2249 | |
2250 | 2250 | // For grep: wikiforum-edit-forum, wikiforum-edit-category, |
2251 | 2251 | // wikiforum-delete-forum, wikiforum-delete-category |
2252 | | - //if( $wikiconf['icon_' . $type . '_edit'] ) { |
2253 | 2252 | $icon = '<img src="' . $wgScriptPath . '/extensions/WikiForum/icons/' . $iconName . '_edit.png" title="' . wfMsg( 'wikiforum-edit-' . $type ) . '" />'; |
2254 | | - //} else { |
2255 | | - // $icon = '<span class="small">' . wfMsg( 'wikiforum-edit' ) . '</span>'; |
2256 | | - //} |
2257 | 2253 | $link = ' <a href="' . $specialPage->escapeFullURL( array( 'edit' . $type => $id ) ) . '">' . $icon . '</a>'; |
2258 | 2254 | |
2259 | | - //if( $wikiconf['icon_' . $type . '_delete'] ) { |
2260 | 2255 | $icon = '<img src="' . $wgScriptPath . '/extensions/WikiForum/icons/' . $iconName . '_delete.png" title="' . wfMsg( 'wikiforum-delete-' . $type ) . '" />'; |
2261 | | - //} else { |
2262 | | - // $icon = '<span class="small">' . wfMsg( 'wikiforum-delete' ) . '</span>'; |
2263 | | - //} |
2264 | 2256 | $link .= ' <a href="' . $specialPage->escapeFullURL( array( 'delete' . $type => $id ) ) . '">' . $icon . '</a>'; |
2265 | 2257 | |
2266 | 2258 | if( $sortup == true ) { |