From: Kunal Mehta Date: Wed, 28 Oct 2015 20:48:46 +0000 (-0700) Subject: Fix diff/history links not showing up for ungrouped enhanced RC X-Git-Tag: 1.31.0-rc.0~9189 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=56a9ae8d28256b58f1a6a76d55ede99c473b89aa;p=lhc%2Fweb%2Fwiklou.git Fix diff/history links not showing up for ungrouped enhanced RC Looks like a typo or accident from d40cd42b9f960c. Bug: T116899 Change-Id: I33b65afa78480612b9312282922686a64346fef2 --- diff --git a/includes/changes/EnhancedChangesList.php b/includes/changes/EnhancedChangesList.php index b59437e094..088398278a 100644 --- a/includes/changes/EnhancedChangesList.php +++ b/includes/changes/EnhancedChangesList.php @@ -608,7 +608,7 @@ class EnhancedChangesList extends ChangesList { } # Diff and hist links - if ( $type == RC_LOG && $type != RC_CATEGORIZE ) { + if ( $type != RC_LOG && $type != RC_CATEGORIZE ) { $query['action'] = 'history'; $data['historyLink'] = $this->getDiffHistLinks( $rcObj, $query ); }