From 25c23331e35ab3de507ecfc8834aa649c5bb2618 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Fri, 9 Oct 2015 20:55:47 -0700 Subject: [PATCH] Fix broken min() call in OutputPage Change-Id: Ia2d895371f6f114c1cb821dd1d2aaaef7935033f --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index d85c60c3f6..62e9192427 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -1957,7 +1957,7 @@ class OutputPage extends ContextSource { * @since 1.27 */ public function lowerCdnMaxage( $maxage ) { - $this->mCdnMaxageLimit = $this->min( $maxage, $this->mCdnMaxageLimit ); + $this->mCdnMaxageLimit = min( $maxage, $this->mCdnMaxageLimit ); $this->setSquidMaxage( $this->mSquidMaxage ); } -- 2.20.1