Index: trunk/extensions/SemanticMediaWiki/includes/SMW_QueryPrinter.php |
— | — | @@ -86,7 +86,7 @@ |
87 | 87 | * Constructor. The parameter $format is a format string |
88 | 88 | * that may influence the processing details. |
89 | 89 | */ |
90 | | - public function SMWResultPrinter( $format, $inline ) { |
| 90 | + public function __constuct( $format, $inline ) { |
91 | 91 | global $smwgQDefaultLinking; |
92 | 92 | $this->mFormat = $format; |
93 | 93 | $this->mInline = $inline; |
Index: trunk/extensions/SemanticMediaWiki/includes/SMW_QueryParser.php |
— | — | @@ -23,7 +23,7 @@ |
24 | 24 | protected $m_conceptprefix; // cache label of concept namespace . ':' |
25 | 25 | protected $m_queryfeatures; // query features to be supported, format similar to $smwgQFeatures |
26 | 26 | |
27 | | - public function SMWQueryParser( $queryfeatures = false ) { |
| 27 | + public function __construct( $queryfeatures = false ) { |
28 | 28 | global $wgContLang, $smwgQFeatures; |
29 | 29 | $this->m_categoryprefix = $wgContLang->getNsText( NS_CATEGORY ) . ':'; |
30 | 30 | $this->m_conceptprefix = $wgContLang->getNsText( SMW_NS_CONCEPT ) . ':'; |
Index: trunk/extensions/SemanticMediaWiki/includes/storage/SMW_QueryResult.php |
— | — | @@ -255,7 +255,7 @@ |
256 | 256 | * @param SMWPrintRequest $printRequest |
257 | 257 | * @param SMWStore $store |
258 | 258 | */ |
259 | | - public function SMWResultArray( SMWWikiPageValue $resultPage, SMWPrintRequest $printRequest, SMWStore $store ) { |
| 259 | + public function __construct( SMWWikiPageValue $resultPage, SMWPrintRequest $printRequest, SMWStore $store ) { |
260 | 260 | $this->mResult = $resultPage; |
261 | 261 | $this->mPrintRequest = $printRequest; |
262 | 262 | $this->mStore = $store; |