X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FRecentChange.php;h=97a5e1b59f7846a0fd4054ceeaffa1885aa53f32;hb=9a5c36d3c1382a501c5e7a1a5537a31a8cebecbd;hp=970411ee1b4232bd3857d7e8ef802e9e3d67b072;hpb=9d1e45bf426ef0a00c8069e7780448d743b39cde;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/RecentChange.php b/includes/RecentChange.php index 970411ee1b..97a5e1b59f 100644 --- a/includes/RecentChange.php +++ b/includes/RecentChange.php @@ -66,7 +66,7 @@ class RecentChange { /** * Obtain the recent change with a given rc_id value * - * @param $rcid rc_id value to retrieve + * @param $rcid Int rc_id value to retrieve * @return RecentChange */ public static function newFromId( $rcid ) { @@ -115,10 +115,10 @@ class RecentChange { $this->mExtra = $extra; } - /** - * - * @return Title - */ + /** + * + * @return Title + */ public function &getTitle() { if( $this->mTitle === false ) { $this->mTitle = Title::makeTitle( $this->mAttribs['rc_namespace'], $this->mAttribs['rc_title'] ); @@ -256,7 +256,7 @@ class RecentChange { * * @param $change Mixed: RecentChange or corresponding rc_id * @param $auto Boolean: for automatic patrol - * @return See doMarkPatrolled(), or null if $change is not an existing rc_id + * @return Array See doMarkPatrolled(), or null if $change is not an existing rc_id */ public static function markPatrolled( $change, $auto = false ) { $change = $change instanceof RecentChange @@ -674,7 +674,7 @@ class RecentChange { $flag .= ($rc_new ? "N" : "") . ($rc_minor ? "M" : "") . ($rc_bot ? "B" : ""); } - if ( $wgRC2UDPInterwikiPrefix === true ) { + if ( $wgRC2UDPInterwikiPrefix === true && $wgLocalInterwiki !== false ) { $prefix = $wgLocalInterwiki; } elseif ( $wgRC2UDPInterwikiPrefix ) { $prefix = $wgRC2UDPInterwikiPrefix;