Index: trunk/extensions/SemanticDrilldown/specials/SD_Filters.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | wfLoadExtensionMessages('SemanticDrilldown'); |
19 | 19 | } |
20 | 20 | |
21 | | - function execute() { |
| 21 | + function execute( $par ) { |
22 | 22 | $this->setHeaders(); |
23 | 23 | list( $limit, $offset ) = wfCheckLimits(); |
24 | 24 | $rep = new FiltersPage(); |
Index: trunk/extensions/SemanticDrilldown/specials/SD_CreateFilter.php |
— | — | @@ -18,7 +18,7 @@ |
19 | 19 | wfLoadExtensionMessages('SemanticDrilldown'); |
20 | 20 | } |
21 | 21 | |
22 | | - function execute() { |
| 22 | + function execute( $par ) { |
23 | 23 | $this->setHeaders(); |
24 | 24 | doSpecialCreateFilter(); |
25 | 25 | } |
Index: trunk/extensions/SemanticDrilldown/specials/SD_BrowseData.php |
— | — | @@ -19,9 +19,9 @@ |
20 | 20 | wfLoadExtensionMessages('SemanticDrilldown'); |
21 | 21 | } |
22 | 22 | |
23 | | - function execute($query = '') { |
| 23 | + function execute( $query ) { |
24 | 24 | $this->setHeaders(); |
25 | | - doSpecialBrowseData($query); |
| 25 | + doSpecialBrowseData( $query ); |
26 | 26 | } |
27 | 27 | } |
28 | 28 | |