Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -34,6 +34,7 @@ |
35 | 35 | the user a page named [[:]] already exists. |
36 | 36 | |
37 | 37 | === API changes in 1.19 === |
| 38 | +* (bug 27790) add query type for querymodules to action=paraminfo |
38 | 39 | |
39 | 40 | === Languages updated in 1.19 === |
40 | 41 | |
Index: trunk/phase3/includes/api/ApiParamInfo.php |
— | — | @@ -70,6 +70,7 @@ |
71 | 71 | $obj = new $qmodArr[$qm]( $this, $qm ); |
72 | 72 | $a = $this->getClassInfo( $obj ); |
73 | 73 | $a['name'] = $qm; |
| 74 | + $a['querytype'] = $queryObj->getModuleType( $qm ); |
74 | 75 | $r['querymodules'][] = $a; |
75 | 76 | } |
76 | 77 | $result->setIndexedTagName( $r['querymodules'], 'module' ); |