summaryrefslogtreecommitdiff
path: root/doku.php
diff options
context:
space:
mode:
authorAdrian Lang <lang@cosmocode.de>2010-09-22 16:29:25 +0200
committerAdrian Lang <lang@cosmocode.de>2010-09-22 16:36:18 +0200
commit42de51b18d302d07e109c24dfb0ae237e6d38643 (patch)
tree337964c975fca1039e3b7bb8698314c53a267876 /doku.php
parent17566ac6f3581704c5238c433234ecfb7b0d98f2 (diff)
downloadrpg-42de51b18d302d07e109c24dfb0ae237e6d38643.tar.gz
rpg-42de51b18d302d07e109c24dfb0ae237e6d38643.tar.bz2
Work around WebKit bug: newlines at the end of input values are removed.
In WebKit, newlines at the end of input field’s value parameters are removed. This breaks $PRE, so we protect those new lines with a dot and later remove the dot.
Diffstat (limited to 'doku.php')
-rw-r--r--doku.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/doku.php b/doku.php
index 3f930a965..ae44fcec7 100644
--- a/doku.php
+++ b/doku.php
@@ -40,7 +40,7 @@ if(empty($HIGH)) $HIGH = getGoogleQuery();
if (isset($_POST['wikitext'])) {
$TEXT = cleanText($_POST['wikitext']);
}
-$PRE = cleanText($_POST['prefix']);
+$PRE = cleanText(substr($_POST['prefix'], 0, -1));
$SUF = cleanText($_POST['suffix']);
$SUM = $_REQUEST['summary'];