Index: trunk/extensions/Survey/api/ApiQuerySurveySubmissions.php |
— | — | @@ -91,7 +91,6 @@ |
92 | 92 | ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2 |
93 | 93 | ), |
94 | 94 | 'continue' => null, |
95 | | - 'token' => null, |
96 | 95 | ); |
97 | 96 | |
98 | 97 | return array_merge( SurveySubmission::getAPIParams( false ), $params ); |
— | — | @@ -106,7 +105,6 @@ |
107 | 106 | 'props' => 'Survey data to query', |
108 | 107 | 'continue' => 'Offset number from where to continue the query', |
109 | 108 | 'limit' => 'Max amount of words to return', |
110 | | - 'token' => 'Edit token. You can get one of these through prop=info.', |
111 | 109 | ); |
112 | 110 | |
113 | 111 | return array_merge( SurveySubmission::getFieldDescriptions(), $descs ); |
Index: trunk/extensions/Survey/api/ApiQuerySurveyAnswers.php |
— | — | @@ -91,7 +91,6 @@ |
92 | 92 | ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2 |
93 | 93 | ), |
94 | 94 | 'continue' => null, |
95 | | - 'token' => null, |
96 | 95 | ); |
97 | 96 | |
98 | 97 | return array_merge( SurveyAnswer::getAPIParams( false ), $params ); |
— | — | @@ -106,7 +105,6 @@ |
107 | 106 | 'props' => 'Survey data to query', |
108 | 107 | 'continue' => 'Offset number from where to continue the query', |
109 | 108 | 'limit' => 'Max amount of words to return', |
110 | | - 'token' => 'Edit token. You can get one of these through prop=info.', |
111 | 109 | ); |
112 | 110 | |
113 | 111 | return array_merge( SurveyAnswer::getFieldDescriptions(), $descs ); |
Index: trunk/extensions/Survey/api/ApiQuerySurveys.php |
— | — | @@ -153,7 +153,6 @@ |
154 | 154 | ApiBase::PARAM_MAX2 => ApiBase::LIMIT_BIG2 |
155 | 155 | ), |
156 | 156 | 'continue' => null, |
157 | | - 'token' => null, |
158 | 157 | ); |
159 | 158 | |
160 | 159 | } |
— | — | @@ -171,7 +170,6 @@ |
172 | 171 | 'props' => 'Survey data to query', |
173 | 172 | 'continue' => 'Offset number from where to continue the query', |
174 | 173 | 'limit' => 'Max amount of words to return', |
175 | | - 'token' => 'Edit token. You can get one of these through prop=info.', |
176 | 174 | ); |
177 | 175 | } |
178 | 176 | |