Index: trunk/phase3/RELEASE-NOTES-1.18 |
— | — | @@ -702,17 +702,17 @@ |
703 | 703 | MediaWiki.org, and is covered under the GNU Free Documentation License (except |
704 | 704 | for pages that explicitly state that their contents are in the public domain): |
705 | 705 | |
706 | | - http://www.mediawiki.org/wiki/Documentation |
| 706 | + http://www.mediawiki.org/wiki/Documentation |
707 | 707 | |
708 | 708 | == Mailing list == |
709 | 709 | |
710 | 710 | A mailing list is available for MediaWiki user support and discussion: |
711 | 711 | |
712 | | - http://lists.wikimedia.org/mailman/listinfo/mediawiki-l |
| 712 | + http://lists.wikimedia.org/mailman/listinfo/mediawiki-l |
713 | 713 | |
714 | 714 | A low-traffic announcements-only list is also available: |
715 | 715 | |
716 | | - http://lists.wikimedia.org/mailman/listinfo/mediawiki-announce |
| 716 | + http://lists.wikimedia.org/mailman/listinfo/mediawiki-announce |
717 | 717 | |
718 | 718 | It's highly recommended that you sign up for one of these lists if you're |
719 | 719 | going to run a public MediaWiki, so you can be notified of security fixes. |
Index: trunk/phase3/includes/api/ApiWatch.php |
— | — | @@ -49,7 +49,7 @@ |
50 | 50 | $params = $this->extractRequestParams(); |
51 | 51 | $title = Title::newFromText( $params['title'] ); |
52 | 52 | |
53 | | - if ( !$title || $titile->getNamespace() < 0 ) { |
| 53 | + if ( !$title || $title->getNamespace() < 0 ) { |
54 | 54 | $this->dieUsageMsg( array( 'invalidtitle', $params['title'] ) ); |
55 | 55 | } |
56 | 56 | |