summaryrefslogtreecommitdiff
path: root/inc/parser
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2006-08-25 19:36:53 +0200
committerAndreas Gohr <andi@splitbrain.org>2006-08-25 19:36:53 +0200
commit501af51e6336cb2c1985f28f2355c0030a0c3660 (patch)
tree2b0588d9fd7451e036695bd549600a0e846190ac /inc/parser
parent0d8ea6141bc1a7136d25b6377e9d1d04f19664a9 (diff)
downloadrpg-501af51e6336cb2c1985f28f2355c0030a0c3660.tar.gz
rpg-501af51e6336cb2c1985f28f2355c0030a0c3660.tar.bz2
no forcing of ASCII in section IDs
XHTML allows non-ASCII chars in ids and names, so there is no need to forcibly romanize section header ids darcs-hash:20060825173653-7ad00-f982cec893cc2d0f1b2de4226879d7d2b294ac76.gz
Diffstat (limited to 'inc/parser')
-rw-r--r--inc/parser/xhtml.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index e8fb84494..6bdb6e877 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -1033,7 +1033,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
* @author Andreas Gohr <andi@splitbrain.org>
*/
function _headerToLink($title,$create=false) {
- $title = str_replace(':','',cleanID($title,true)); //force ASCII
+ $title = str_replace(':','',cleanID($title));
$title = ltrim($title,'0123456789._-');
if(empty($title)) $title='section';