diff options
author | Andreas Gohr <andi@splitbrain.org> | 2008-02-15 22:48:57 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2008-02-15 22:48:57 +0100 |
commit | 0117e0e5fb29de8913a14bd3a1f0f743bb7b6b57 (patch) | |
tree | d7144a72486adfdb9fbfc87cc714702983cf3063 | |
parent | 1db218e9df732c39738a0b92cb9276304008fe74 (diff) | |
download | rpg-0117e0e5fb29de8913a14bd3a1f0f743bb7b6b57.tar.gz rpg-0117e0e5fb29de8913a14bd3a1f0f743bb7b6b57.tar.bz2 |
fix for plugin manager breaking multibyte chars
darcs-hash:20080215214857-7ad00-066c28dc5cdb3551673a63cb9536507f5e4bd8c1.gz
-rw-r--r-- | lib/plugins/plugin/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plugins/plugin/admin.php b/lib/plugins/plugin/admin.php index 2f7b837f9..5b284f539 100644 --- a/lib/plugins/plugin/admin.php +++ b/lib/plugins/plugin/admin.php @@ -542,7 +542,7 @@ class ap_manage { // simple output filter, make html entities safe and convert new lines to <br /> function out($text) { - return str_replace("\n",'<br />',htmlentities($text)); + return str_replace("\n",'<br />',htmlspecialchars($text)); } } |