summaryrefslogtreecommitdiff
path: root/inc/parser/xhtml.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2005-09-11 22:25:22 +0200
committerAndreas Gohr <andi@splitbrain.org>2005-09-11 22:25:22 +0200
commit5291ca3ad4afd68d143618c7e71277b0be0a8570 (patch)
tree04f5cd58d08df12e244f3801d32c416f5514f39b /inc/parser/xhtml.php
parent73ccfcb964771f4bd540838c32791a1d49e29d5f (diff)
downloadrpg-5291ca3ad4afd68d143618c7e71277b0be0a8570.tar.gz
rpg-5291ca3ad4afd68d143618c7e71277b0be0a8570.tar.bz2
hide namespace in file-links (non-image media) #512
darcs-hash:20050911202522-7ad00-79c3db925f5c7c68e7751643a691ec0e4b380ea1.gz
Diffstat (limited to 'inc/parser/xhtml.php')
-rw-r--r--inc/parser/xhtml.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index bba85b7e7..3ae3c49d1 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -969,8 +969,8 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
// well at least we have a title to display
$ret .= $this->_xmlEntities($title);
}else{
- // just show the source
- $ret .= $this->_xmlEntities($src);
+ // just show the sourcename
+ $ret .= $this->_xmlEntities(noNS($src));
}
return $ret;