From 0aeb9c5c7b4a9ff660e7fbc1f4611d80aef33607 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Tue, 25 Mar 2008 15:36:05 +0000 Subject: [PATCH] Correcting slight mistake in r32413 --- includes/api/ApiQueryInfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/api/ApiQueryInfo.php b/includes/api/ApiQueryInfo.php index 93a69d2b68..672e218b21 100644 --- a/includes/api/ApiQueryInfo.php +++ b/includes/api/ApiQueryInfo.php @@ -237,7 +237,7 @@ class ApiQueryInfo extends ApiQueryBase { // Get edit/protect tokens and protection data for missing titles if requested // Delete and move tokens are N/A for missing titles anyway - if($tok_edit || $tok_protect || $fld_protection) + if($tok_edit || $tok_protect || $fld_protection || $fld_talkid || $fld_subjectid) { $res = &$result->getData(); foreach($missing as $pageid => $title) { -- 2.20.1