projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1d6bd2
)
call htmlspecialchars, not htmlentities
author
Chuck Hagenbuch
<chuck@horde.org>
Sat, 30 May 2009 15:31:13 +0000
(11:31 -0400)
committer
Chuck Hagenbuch
<chuck@horde.org>
Sat, 30 May 2009 15:31:13 +0000
(11:31 -0400)
framework/View/lib/Horde/View/Helper/Text.php
patch
|
blob
|
history
diff --git
a/framework/View/lib/Horde/View/Helper/Text.php
b/framework/View/lib/Horde/View/Helper/Text.php
index
1d97c28
..
6b308b4
100644
(file)
--- a/
framework/View/lib/Horde/View/Helper/Text.php
+++ b/
framework/View/lib/Horde/View/Helper/Text.php
@@
-47,7
+47,7
@@
class Horde_View_Helper_Text extends Horde_View_Helper_Base
*/
public function h($var)
{
- return html
entitie
s($var, ENT_QUOTES, $this->_view->getEncoding());
+ return html
specialchar
s($var, ENT_QUOTES, $this->_view->getEncoding());
}
/**