From 3094f9505f8afa03e4ae02f0ec260b88841cc3f3 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Sat, 25 Sep 2010 17:08:23 +0000 Subject: [PATCH] $name used in continue is undefined, use $message Though, this module seems to have no limits, so not sure why we have a continue/"from" --- includes/api/ApiQueryAllmessages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/api/ApiQueryAllmessages.php b/includes/api/ApiQueryAllmessages.php index 9159685f35..3c544280c5 100644 --- a/includes/api/ApiQueryAllmessages.php +++ b/includes/api/ApiQueryAllmessages.php @@ -121,7 +121,7 @@ class ApiQueryAllmessages extends ApiQueryBase { } $fit = $result->addValue( array( 'query', $this->getModuleName() ), null, $a ); if ( !$fit ) { - $this->setContinueEnumParameter( 'from', $name ); + $this->setContinueEnumParameter( 'from', $message ); break; } } -- 2.20.1