Index: trunk/phase3/includes/Article.php |
— | — | @@ -2845,7 +2845,7 @@ |
2846 | 2846 | ) ) . |
2847 | 2847 | "</td> |
2848 | 2848 | </tr>"; |
2849 | | - # Dissalow watching is user is not logged in |
| 2849 | + # Disallow watching if user is not logged in |
2850 | 2850 | if ( $wgUser->isLoggedIn() ) { |
2851 | 2851 | $form .= " |
2852 | 2852 | <tr> |
Index: trunk/phase3/includes/UserMailer.php |
— | — | @@ -436,7 +436,7 @@ |
437 | 437 | $this->composed_common = true; |
438 | 438 | |
439 | 439 | $summary = ($this->summary == '') ? ' - ' : $this->summary; |
440 | | - $medit = ($this->minorEdit) ? wfMsg( 'minoredit' ) : ''; |
| 440 | + $medit = ($this->minorEdit) ? wfMsgForContent( 'minoredit' ) : ''; |
441 | 441 | |
442 | 442 | # You as the WikiAdmin and Sysops can make use of plenty of |
443 | 443 | # named variables when composing your notification emails while |