From e3614470b9ea201ec955d142dfbccfffcbd2114a Mon Sep 17 00:00:00 2001 From: DariusIII Date: Thu, 18 Jul 2019 09:16:58 +0200 Subject: [PATCH] Lowercase limits in XML response --- Blacklight/http/XML_Response.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Blacklight/http/XML_Response.php b/Blacklight/http/XML_Response.php index 86890678a..1400072e4 100755 --- a/Blacklight/http/XML_Response.php +++ b/Blacklight/http/XML_Response.php @@ -352,10 +352,10 @@ class XML_Response public function includeLimits(): void { $this->xml->startElement($this->namespace.':apilimits'); - $this->xml->writeAttribute('apiCurrent', $this->parameters['requests']); - $this->xml->writeAttribute('apiMax', $this->parameters['apilimit']); - $this->xml->writeAttribute('grabCurrent', $this->parameters['grabs']); - $this->xml->writeAttribute('grabMax', $this->parameters['downloadlimit']); + $this->xml->writeAttribute('apicurrent', $this->parameters['requests']); + $this->xml->writeAttribute('apimax', $this->parameters['apilimit']); + $this->xml->writeAttribute('grabcurrent', $this->parameters['grabs']); + $this->xml->writeAttribute('grabmax', $this->parameters['downloadlimit']); $this->xml->endElement(); }