Index: trunk/extensions/SemanticMediaWiki/specials/AskSpecial/SMW_SpecialQueryCreator.php |
— | — | @@ -4,18 +4,13 @@ |
5 | 5 | * This special page for Semantic MediaWiki implements a customisable form for |
6 | 6 | * executing queries outside of articles. |
7 | 7 | * |
8 | | - * Currently adapted from current contents of SMW_SpecialAsk.php |
9 | | - * This page is currently under development as part of the Google Summer of |
10 | | - * Code 2011 Program. |
11 | | - * |
12 | 8 | * @file SMW_SpecialQueryCreator.php |
13 | 9 | * @ingroup SMWSpecialPage |
14 | 10 | * @ingroup SpecialPage |
15 | 11 | * |
16 | 12 | * @author Markus Krötzsch |
17 | | - * @author Yaron Koren |
18 | | - * @author Sanyam Goyal |
19 | 13 | * @author Jeroen De Dauw |
| 14 | + * @author Sergey Chernyshev |
20 | 15 | * @author Devayon Das |
21 | 16 | */ |
22 | 17 | class SMWQueryCreatorPage extends SMWQueryUI { |
— | — | @@ -93,7 +88,7 @@ |
94 | 89 | '<p>' . $this->getPOFormBox( $this->getPOStrings(), SMWQueryUI::ENABLE_AUTO_SUGGEST ) . '</p>' . "\n"; |
95 | 90 | |
96 | 91 | // sorting inputs |
97 | | - $result .= $this -> addSortingFormBox(); |
| 92 | + $result .= $this->getSortingFormBox(); |
98 | 93 | |
99 | 94 | $result .= "<br><br>" . $this->getFormatSelectBox( 'broadtable' ); |
100 | 95 | |
— | — | @@ -110,7 +105,8 @@ |
111 | 106 | } |
112 | 107 | |
113 | 108 | /** |
114 | | - * Compatibility method to get the skin; MW 1.18 introduces a getSkin method in SpecialPage. |
| 109 | + * Compatibility method to get the skin; MW 1.18 introduces a getSkin method |
| 110 | + * in SpecialPage. |
115 | 111 | * |
116 | 112 | * @since 1.6 |
117 | 113 | * |