Index: trunk/extensions/SemanticGlossary/SpecialSemanticGlossaryBrowser.php |
— | — | @@ -77,7 +77,8 @@ |
78 | 78 | $definition = $glossaryElement->getDefinition( $key ); |
79 | 79 | $link = $glossaryElement->getLink( $key ); |
80 | 80 | |
81 | | - $tablerows .= $this->$createTableRowMethod( $source, $term, $definition, $link ); |
| 81 | + $tablerows .= $this->$createTableRowMethod( $source->getInterwiki() . ":" . $source->getNamespace() . ":" . $source->getDBkey(), |
| 82 | + $term, $definition, $link ); |
82 | 83 | |
83 | 84 | $glossaryElement->next(); |
84 | 85 | } |
Index: trunk/extensions/SemanticGlossary/SemanticGlossaryBackend.php |
— | — | @@ -88,7 +88,7 @@ |
89 | 89 | LingoElement::ELEMENT_TERM => $term, |
90 | 90 | LingoElement::ELEMENT_DEFINITION => $definition, |
91 | 91 | LingoElement::ELEMENT_LINK => $link, |
92 | | - LingoElement::ELEMENT_SOURCE => $resultline[0]->getResultSubject()->getTitle()->getPrefixedText() |
| 92 | + LingoElement::ELEMENT_SOURCE => $resultline[0]->getResultSubject() |
93 | 93 | ); |
94 | 94 | } |
95 | 95 | |