From 56a9ae8d28256b58f1a6a76d55ede99c473b89aa Mon Sep 17 00:00:00 2001 From: Kunal Mehta Date: Wed, 28 Oct 2015 13:48:46 -0700 Subject: [PATCH] Fix diff/history links not showing up for ungrouped enhanced RC Looks like a typo or accident from d40cd42b9f960c. Bug: T116899 Change-Id: I33b65afa78480612b9312282922686a64346fef2 --- includes/changes/EnhancedChangesList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); } -- 2.20.1