Index: trunk/phase3/includes/api/ApiQueryBase.php |
— | — | @@ -160,7 +160,12 @@ |
161 | 161 | |
162 | 162 | protected function setContinueEnumParameter($paramName, $paramValue) { |
163 | 163 | |
164 | | - $msg = array( $this->encodeParamName($paramName) => $paramValue ); |
| 164 | + $paramName = $this->encodeParamName($paramName); |
| 165 | + $msg = array( $paramName => $paramValue ); |
| 166 | + |
| 167 | +// This is an alternative continue format as a part of the URL string |
| 168 | +// ApiResult :: setContent($msg, $paramName . '=' . urlencode($paramValue)); |
| 169 | + |
165 | 170 | $this->getResult()->addValue('query-continue', $this->getModuleName(), $msg); |
166 | 171 | } |
167 | 172 | |