Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -7,7 +7,7 @@ |
8 | 8 | |
9 | 9 | THIS IS NOT A RELEASE YET |
10 | 10 | |
11 | | -MediaWiki 1.19 is an alpha-quality branch and is not recommended for use in |
| 11 | +MediaWiki 1.19 is an alpha-quality branch and is not recommended for use in |
12 | 12 | production. |
13 | 13 | |
14 | 14 | === Configuration changes in 1.19 === |
— | — | @@ -25,8 +25,8 @@ |
26 | 26 | * (bug 28503) Support for ircs:// URL protocols |
27 | 27 | * (bug 26033) It is now possible to count all non-redirect pages in content |
28 | 28 | namespaces as articles |
29 | | -* Images can now be embedded in an XML dump stream using backupDump.php |
30 | | - --include-files and can be imported using importDump.php --uploads; |
| 29 | +* Images can now be embedded in an XML dump stream using backupDump.php |
| 30 | + --include-files and can be imported using importDump.php --uploads; |
31 | 31 | furthermore, it can import files from the filesystem using --image-base-path |
32 | 32 | * Three new hooks in Special:Undelete, 'UndeleteForm::showHistory', |
33 | 33 | 'UndeleteForm::showRevision' and 'UndeleteForm::undelete', so that extensions |
— | — | @@ -56,7 +56,10 @@ |
57 | 57 | * (bug 1780) Uploading files with non-ascii characters are now forbidden on |
58 | 58 | Windows. |
59 | 59 | * (bug 23464) File: prefixes are now chopped off during uploading. |
60 | | -* (bug 28174) Message config-logo-help amended to not explicitly assume any LTR/RTL screen layout. |
| 60 | +* (bug 28174) Message config-logo-help amended to not explicitly assume any |
| 61 | + LTR/RTL screen layout. |
| 62 | +* (bug 28992) Revision numbers in the patrol log are transformed in the user |
| 63 | + language. |
61 | 64 | |
62 | 65 | === API changes in 1.19 === |
63 | 66 | * (bug 27790) add query type for querymodules to action=paraminfo |
— | — | @@ -75,7 +78,7 @@ |
76 | 79 | |
77 | 80 | MediaWiki 1.19 requires PHP 5.2.3. PHP 4 is no longer supported. |
78 | 81 | |
79 | | -MySQL is the recommended DBMS. PostgreSQL or SQLite can also be used, but |
| 82 | +MySQL is the recommended DBMS. PostgreSQL or SQLite can also be used, but |
80 | 83 | support for them is somewhat less mature. There is experimental support for IBM |
81 | 84 | DB2, Oracle and Microsoft SQL Server. |
82 | 85 | |
— | — | @@ -90,8 +93,8 @@ |
91 | 94 | 1.19 has several database changes since 1.17, and will not work without schema |
92 | 95 | updates. |
93 | 96 | |
94 | | -If upgrading from before 1.11, and you are using a wiki as a commons |
95 | | -repository, make sure that it is updated as well. Otherwise, errors may arise |
| 97 | +If upgrading from before 1.11, and you are using a wiki as a commons |
| 98 | +repository, make sure that it is updated as well. Otherwise, errors may arise |
96 | 99 | due to database schema changes. |
97 | 100 | |
98 | 101 | If upgrading from before 1.7, you may want to run refreshLinks.php to ensure |
— | — | @@ -107,8 +110,8 @@ |
108 | 111 | |
109 | 112 | == Online documentation == |
110 | 113 | |
111 | | -Documentation for both end-users and site administrators is available on |
112 | | -MediaWiki.org, and is covered under the GNU Free Documentation License (except |
| 114 | +Documentation for both end-users and site administrators is available on |
| 115 | +MediaWiki.org, and is covered under the GNU Free Documentation License (except |
113 | 116 | for pages that explicitly state that their contents are in the public domain): |
114 | 117 | |
115 | 118 | http://www.mediawiki.org/wiki/Documentation |
Index: trunk/phase3/includes/PatrolLog.php |
— | — | @@ -39,6 +39,8 @@ |
40 | 40 | * @return String |
41 | 41 | */ |
42 | 42 | public static function makeActionText( $title, $params, $skin ) { |
| 43 | + global $wgLang; |
| 44 | + |
43 | 45 | list( $cur, /* $prev */, $auto ) = $params; |
44 | 46 | if( is_object( $skin ) ) { |
45 | 47 | # Standard link to the page in question |
— | — | @@ -52,7 +54,7 @@ |
53 | 55 | |
54 | 56 | $diff = $skin->link( |
55 | 57 | $title, |
56 | | - htmlspecialchars( wfMsg( 'patrol-log-diff', $cur ) ), |
| 58 | + htmlspecialchars( wfMsg( 'patrol-log-diff', $wgLang->formatNum( $cur, true ) ) ), |
57 | 59 | array(), |
58 | 60 | $query, |
59 | 61 | array( 'known', 'noclasses' ) |