summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc')
-rw-r--r--inc/common.php4
-rw-r--r--inc/parser/renderer.php5
-rw-r--r--inc/parser/xhtml.php8
3 files changed, 7 insertions, 10 deletions
diff --git a/inc/common.php b/inc/common.php
index 22e57b2c5..e991375f5 100644
--- a/inc/common.php
+++ b/inc/common.php
@@ -1497,9 +1497,7 @@ function userinfo($username = null) {
$xhtml_renderer->interwiki = getInterwiki();
}
$shortcut = 'user';
- $url = $xhtml_renderer->_resolveInterWiki($shortcut, $username);
- list($url, $urlparam) = explode('?', $url, 2);
- $data['link']['url'] = wl($url, $urlparam);
+ $data['link']['url'] = $xhtml_renderer->_resolveInterWiki($shortcut, $username);
}
} else {
$data['link'] = false;
diff --git a/inc/parser/renderer.php b/inc/parser/renderer.php
index e3401fd48..66a106b11 100644
--- a/inc/parser/renderer.php
+++ b/inc/parser/renderer.php
@@ -321,6 +321,11 @@ class Doku_Renderer extends DokuWiki_Plugin {
//default
$url = $url.rawurlencode($reference);
}
+ //url without slashes is handled as a pageid
+ if(strpos($url,'/') === false) {
+ list($url, $urlparam) = explode('?', $url, 2);
+ $url = wl($url, $urlparam);
+ }
if($hash) $url .= '#'.rawurlencode($hash);
return $url;
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index 957dd992b..f0a507721 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -699,12 +699,6 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
//get interwiki URL
$url = $this->_resolveInterWiki($wikiName,$wikiUri);
- if(strpos($url,'/') === false) {
- list($url, $urlparam) = explode('?', $url, 2);
- $url = wl($url, $urlparam);
- $link['target'] = $conf['target']['wiki'];
- }
-
if ( !$isImage ) {
$class = preg_replace('/[^_\-a-z0-9]+/i','_',$wikiName);
$link['class'] = "interwiki iw_$class";
@@ -713,7 +707,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
}
//do we stay at the same server? Use local target
- if( strpos($url,DOKU_URL) === 0 ){
+ if( strpos($url,DOKU_URL) === 0 OR strpos($url,DOKU_BASE) === 0){
$link['target'] = $conf['target']['wiki'];
}