summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
authorAlexandre ROSSI <niol@sousmonlit.dyndns.org>2005-07-22 19:02:10 +0200
committerAlexandre ROSSI <niol@sousmonlit.dyndns.org>2005-07-22 19:02:10 +0200
commit38c08c2be9122c742a3ff6c2815dbc1f515476d1 (patch)
tree1463663ded656f5d6dd10cfc94714c1edad7129c /inc
parent9c5229c1f9290415cd45c9f27fdb2788281ad882 (diff)
downloadrpg-38c08c2be9122c742a3ff6c2815dbc1f515476d1.tar.gz
rpg-38c08c2be9122c742a3ff6c2815dbc1f515476d1.tar.bz2
Fixed email link validation issue in 'visible' mode to conform RFC1738
darcs-hash:20050722170210-5338b-86561e364705cd92c690ae636e0a87f84a0d1672.gz
Diffstat (limited to 'inc')
-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 14182d983..53802c633 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -681,7 +681,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
}
}
- $link['url'] = 'mailto:'.$address;
+ $link['url'] = 'mailto:'.rawurlencode($address);
$link['name'] = $name;
$link['title'] = $title;