Index: trunk/extensions/SemanticMaps/includes/queryprinters/SM_QueryHandler.php |
— | — | @@ -110,7 +110,11 @@ |
111 | 111 | while ( ( /* SMWDataValue */ $object = $resultArray->getNextObject() ) !== false ) { |
112 | 112 | if ( $object->getTypeID() == '_wpg' && $i == 0 ) { |
113 | 113 | if ( $this->titleLink == self::LINK_ABSOLUTE ) { |
114 | | - $title = Html::element( 'a', array( 'href' => $object->getTitle()->getFullUrl() ) ); |
| 114 | + $title = Html::element( |
| 115 | + 'a', |
| 116 | + array( 'href' => $object->getTitle()->getFullUrl() ), |
| 117 | + $object->getTitle()->getText() |
| 118 | + ); |
115 | 119 | } |
116 | 120 | else { |
117 | 121 | $title = $object->getLongText( $this->outputmode, $this->titleLink == self::LINK_RELATIVE ? $skin : NULL ); |
Index: trunk/extensions/SemanticMaps/SemanticMaps.php |
— | — | @@ -38,7 +38,7 @@ |
39 | 39 | |
40 | 40 | // Only initialize the extension when all dependencies are present. |
41 | 41 | if ( defined( 'Maps_VERSION' ) && defined( 'SMW_VERSION' ) ) { |
42 | | - define( 'SM_VERSION', '0.7.3 a3' ); |
| 42 | + define( 'SM_VERSION', '0.7.3 beta 1' ); |
43 | 43 | |
44 | 44 | $useExtensionPath = version_compare( $wgVersion, '1.16', '>=' ) && isset( $wgExtensionAssetsPath ) && $wgExtensionAssetsPath; |
45 | 45 | $smgScriptPath = ( $useExtensionPath ? $wgExtensionAssetsPath : $wgScriptPath . '/extensions' ) . '/SemanticMaps'; |