Index: trunk/extensions/EmailPage/EmailPage.php |
— | — | @@ -13,7 +13,7 @@ |
14 | 14 | |
15 | 15 | if (!defined('MEDIAWIKI')) die('Not an entry point.'); |
16 | 16 | |
17 | | -define('EMAILPAGE_VERSION', '1.3.2, 2008-11-05'); |
| 17 | +define('EMAILPAGE_VERSION', '1.3.3, 2009-04-19'); |
18 | 18 | |
19 | 19 | $wgEmailPageGroup = 'sysop'; # Users must belong to this group to send emails (empty string means anyone can send) |
20 | 20 | $wgEmailPageContactsCat = ''; # This specifies the name of a category containing categories of contact pages |
— | — | @@ -54,7 +54,7 @@ |
55 | 55 | global $wgTitle, $wgUser, $wgEmailPageGroup; |
56 | 56 | if (is_object($wgTitle) && (empty($wgEmailPageGroup) || in_array($wgEmailPageGroup, $wgUser->getEffectiveGroups()))) { |
57 | 57 | $url = Title::makeTitle(NS_SPECIAL, 'EmailPage')->getLocalURL('ea-title='.$wgTitle->getPrefixedText()); |
58 | | - echo("<li><a href=\"$url\">".wfMsg('emailpage')."</li>"); |
| 58 | + echo("<li><a href=\"$url\">".wfMsg('emailpage')."</a></li>"); |
59 | 59 | } |
60 | 60 | return true; |
61 | 61 | } |