Add some more spacing due to long parameter names
[lhc/web/wiklou.git] / includes / api / ApiQueryProtectedTitles.php
index fcca490..6c54dd6 100644 (file)
@@ -81,6 +81,9 @@ class ApiQueryProtectedTitles extends ApiQueryGeneratorBase {
 
                $count = 0;
                $result = $this->getResult();
+
+               $titles = array();
+
                foreach ( $res as $row ) {
                        if ( ++ $count > $params['limit'] ) {
                                // We've reached the one extra which shows that there are additional pages to be had. Stop here...
@@ -114,7 +117,8 @@ class ApiQueryProtectedTitles extends ApiQueryGeneratorBase {
                                }
 
                                if ( isset( $prop['expiry'] ) ) {
-                                       $vals['expiry'] = Block::decodeExpiry( $row->pt_expiry, TS_ISO_8601 );
+                                       global $wgContLang;
+                                       $vals['expiry'] = $wgContLang->formatExpiry( $row->pt_expiry, TS_ISO_8601 );
                                }
 
                                if ( isset( $prop['level'] ) ) {
@@ -169,8 +173,8 @@ class ApiQueryProtectedTitles extends ApiQueryGeneratorBase {
                        'dir' => array(
                                ApiBase::PARAM_DFLT => 'older',
                                ApiBase::PARAM_TYPE => array(
-                                       'older',
-                                       'newer'
+                                       'newer',
+                                       'older'
                                )
                        ),
                        'start' => array(
@@ -200,13 +204,13 @@ class ApiQueryProtectedTitles extends ApiQueryGeneratorBase {
                        'namespace' => 'Only list titles in these namespaces',
                        'start' => 'Start listing at this protection timestamp',
                        'end' => 'Stop listing at this protection timestamp',
-                       'dir' => 'The direction in which to list',
+                       'dir' => $this->getDirectionDescription( $this->getModulePrefix() ),
                        'limit' => 'How many total pages to return',
                        'prop' => array(
                                'Which properties to get',
                                ' timestamp      - Adds the timestamp of when protection was added',
-                               ' user           - Adds the user to add the protection',
-                               ' userid         - Adds the user id to add the protection',
+                               ' user           - Adds the user that added the protection',
+                               ' userid         - Adds the user id that added the protection',
                                ' comment        - Adds the comment for the protection',
                                ' parsedcomment  - Adds the parsed comment for the protection',
                                ' expiry         - Adds the timestamp of when the protection will be lifted',