X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=blobdiff_plain;f=includes%2Fdeferred%2FLinksUpdate.php;h=0789b216ebe9bacd56360a671cf9acd32ba18f25;hb=bd2a78a159ce6d9f7b27fd75d05570228b44c3cb;hp=65c04d630e941681324251e2d86a08a9ce8d6ac6;hpb=b1d6e78f7444211cc93793103c3673e1a2637a69;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/deferred/LinksUpdate.php b/includes/deferred/LinksUpdate.php index 65c04d630e..0789b216eb 100644 --- a/includes/deferred/LinksUpdate.php +++ b/includes/deferred/LinksUpdate.php @@ -269,7 +269,7 @@ class LinksUpdate extends SqlDataUpdate { } /** - * @param $cats + * @param array $cats */ function invalidateCategories( $cats ) { $this->invalidatePages( NS_CATEGORY, array_keys( $cats ) ); @@ -288,7 +288,7 @@ class LinksUpdate extends SqlDataUpdate { } /** - * @param $images + * @param array $images */ function invalidateImageDescriptions( $images ) { $this->invalidatePages( NS_FILE, array_keys( $images ) ); @@ -329,7 +329,7 @@ class LinksUpdate extends SqlDataUpdate { $toField = $prefix . '_to'; } if ( count( $deletions ) ) { - $where[] = "$toField IN (" . $this->mDb->makeList( array_keys( $deletions ) ) . ')'; + $where[$toField] = array_keys( $deletions ); } else { $where = false; } @@ -432,7 +432,7 @@ class LinksUpdate extends SqlDataUpdate { /** * Get an array of category insertions * - * @param array $existing mapping existing category names to sort keys. If both + * @param array $existing Mapping existing category names to sort keys. If both * match a link in $this, the link will be omitted from the output * * @return array @@ -477,7 +477,7 @@ class LinksUpdate extends SqlDataUpdate { /** * Get an array of interlanguage link insertions * - * @param array $existing mapping existing language codes to titles + * @param array $existing Mapping existing language codes to titles * * @return array */ @@ -820,7 +820,7 @@ class LinksUpdate extends SqlDataUpdate { /** * Get an array of existing categories, with the name in the key and sort key in the value. * - * @return array of property names and values + * @return array Array of property names and values */ private function getExistingProperties() { $res = $this->mDb->select( 'page_props', array( 'pp_propname', 'pp_value' ), @@ -882,7 +882,7 @@ class LinksUpdate extends SqlDataUpdate { /** * Fetch page links added by this LinksUpdate. Only available after the update is complete. * @since 1.22 - * @return null|array of Titles + * @return null|array Array of Titles */ public function getAddedLinks() { if ( $this->linkInsertions === null ) { @@ -899,7 +899,7 @@ class LinksUpdate extends SqlDataUpdate { /** * Fetch page links removed by this LinksUpdate. Only available after the update is complete. * @since 1.22 - * @return null|array of Titles + * @return null|array Array of Titles */ public function getRemovedLinks() { if ( $this->linkDeletions === null ) {