X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FRevision.php;h=cbaff90d6972e62c936713c7b24fe13d3c05695e;hb=6b4737e6e73512dd2de1001e897e0ec603014de7;hp=aaf106967e35ead65ec78559c6e6872cc3573530;hpb=314291057be8864871100eaaaa291a9049ca9a65;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/Revision.php b/includes/Revision.php index aaf106967e..cbaff90d69 100644 --- a/includes/Revision.php +++ b/includes/Revision.php @@ -330,7 +330,7 @@ class Revision implements IDBAccessObject { */ public static function pageJoinCond() { wfDeprecated( __METHOD__, '1.31' ); - return [ 'INNER JOIN', [ 'page_id = rev_page' ] ]; + return [ 'JOIN', [ 'page_id = rev_page' ] ]; } /** @@ -832,17 +832,15 @@ class Revision implements IDBAccessObject { } /** - * Fetch revision comment if it's available to the specified audience. - * If the specified audience does not have access to the comment, an - * empty string will be returned. - * * @param int $audience One of: * Revision::FOR_PUBLIC to be displayed to all users * Revision::FOR_THIS_USER to be displayed to the given user * Revision::RAW get the text regardless of permissions * @param User|null $user User object to check for, only if FOR_THIS_USER is passed * to the $audience parameter - * @return string + * + * @return string|null Returns null if the specified audience does not have access to the + * comment. */ function getComment( $audience = self::FOR_PUBLIC, User $user = null ) { global $wgUser;