Index: trunk/extensions/SemanticMediaWiki/includes/SMW_DV_WikiPage.php |
— | — | @@ -65,7 +65,7 @@ |
66 | 66 | if ( ($linked === NULL) || ($linked === false) || (!$this->isValid()) ) { |
67 | 67 | return $this->m_caption; |
68 | 68 | } else { |
69 | | - return '[[' . $this->m_prefixedtext . '|' . $this->m_caption . ']]'; |
| 69 | + return '[[:' . $this->m_prefixedtext . '|' . $this->m_caption . ']]'; |
70 | 70 | } |
71 | 71 | } |
72 | 72 | |
— | — | @@ -84,7 +84,7 @@ |
85 | 85 | if ( ($linked === NULL) || ($linked === false) ) { |
86 | 86 | return $this->m_prefixedtext; |
87 | 87 | } else { |
88 | | - return '[[' . $this->m_prefixedtext . '|' . $this->m_textform . ']]'; |
| 88 | + return '[[:' . $this->m_prefixedtext . '|' . $this->m_textform . ']]'; |
89 | 89 | } |
90 | 90 | } |
91 | 91 | |