X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2FRecentChange.php;h=97a5e1b59f7846a0fd4054ceeaffa1885aa53f32;hb=c53ccc605f1128eefebda9378116fd18223b1ec2;hp=6663d58a5d454408db0575f033186744864f2fc1;hpb=5be509b0c16ec1af1a3014f60b57a0f796079d86;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/RecentChange.php b/includes/RecentChange.php index 6663d58a5d..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,6 +115,10 @@ class RecentChange { $this->mExtra = $extra; } + /** + * + * @return Title + */ public function &getTitle() { if( $this->mTitle === false ) { $this->mTitle = Title::makeTitle( $this->mAttribs['rc_namespace'], $this->mAttribs['rc_title'] ); @@ -252,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 @@ -579,7 +583,7 @@ class RecentChange { /** * Get an attribute value * - * @param $name Attribute name + * @param $name String Attribute name * @return mixed */ public function getAttribute( $name ) { @@ -670,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;