diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2010-07-28 11:52:48 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2010-07-28 11:52:48 +0200 |
commit | 222b01f5169f1c7e69762e0e8904c24f78f71882 (patch) | |
tree | 8e932e12546bb991357ec48eb1638d1770be7a35 /includes/ImageQueryPage.php | |
parent | 00ab76a6b686e98a914afc1975812d2b1aaa7016 (diff) |
update to MediaWiki 1.16.0
Diffstat (limited to 'includes/ImageQueryPage.php')
-rw-r--r-- | includes/ImageQueryPage.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/includes/ImageQueryPage.php b/includes/ImageQueryPage.php index 3ab0b858..180201a2 100644 --- a/includes/ImageQueryPage.php +++ b/includes/ImageQueryPage.php @@ -13,12 +13,12 @@ class ImageQueryPage extends QueryPage { * Format and output report results using the given information plus * OutputPage * - * @param OutputPage $out OutputPage to print to - * @param Skin $skin User skin to use - * @param Database $dbr Database (read) connection to use - * @param int $res Result pointer - * @param int $num Number of available result rows - * @param int $offset Paging offset + * @param $out OutputPage to print to + * @param $skin Skin: user skin to use + * @param $dbr Database (read) connection to use + * @param $res Integer: result pointer + * @param $num Integer: number of available result rows + * @param $offset Integer: paging offset */ protected function outputResults( $out, $skin, $dbr, $res, $num, $offset ) { if( $num > 0 ) { @@ -41,7 +41,7 @@ class ImageQueryPage extends QueryPage { /** * Prepare an image object given a result row * - * @param object $row Result row + * @param $row Object: result row * @return Image */ private function prepareImage( $row ) { @@ -55,8 +55,8 @@ class ImageQueryPage extends QueryPage { /** * Get additional HTML to be shown in a results' cell * - * @param object $row Result row - * @return string + * @param $row Object: result row + * @return String */ protected function getCellHtml( $row ) { return ''; |