Index: trunk/extensions/SemanticMediaWiki/includes/datavalues/SMW_DV_Property.php |
— | — | @@ -194,7 +194,7 @@ |
195 | 195 | } |
196 | 196 | } |
197 | 197 | |
198 | | - public function getShortHTMLText( $linker = null ) { |
| 198 | + public function getShortHTMLText( $linked = null ) { |
199 | 199 | if ( $this->isVisible() ) { |
200 | 200 | $wikiPageValue = $this->getWikiPageValue(); |
201 | 201 | return is_null( $wikiPageValue ) ? '' : $this->highlightText( $wikiPageValue->getShortHTMLText( $linked ) ); |
— | — | @@ -212,7 +212,7 @@ |
213 | 213 | } |
214 | 214 | } |
215 | 215 | |
216 | | - public function getLongHTMLText( $linker = null ) { |
| 216 | + public function getLongHTMLText( $linked = null ) { |
217 | 217 | if ( $this->isVisible() ) { |
218 | 218 | $wikiPageValue = $this->getWikiPageValue(); |
219 | 219 | return is_null( $wikiPageValue ) ? '' : $this->highlightText( $wikiPageValue->getLongHTMLText( $linked ) ); |