openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 0f1e6f8776757e2bb013721928242244493e4c87
parent 109aca9955478501c41d4af7cf92fa21e8c924c4
Author: dankert <devnull@localhost>
Date:   Tue, 27 Nov 2007 22:16:33 +0100

Bugfix in "encodeHtmlSpecialChars()"

Diffstat:
serviceClasses/Text.class.php | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/serviceClasses/Text.class.php b/serviceClasses/Text.class.php @@ -20,6 +20,9 @@ // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // --------------------------------------------------------------------------- // $Log$ +// Revision 1.9 2007-11-27 21:16:33 dankert +// Bugfix in "encodeHtmlSpecialChars()" +// // Revision 1.8 2007-11-27 21:10:35 dankert // Verschieben von "replaceHtmlChars()" nach Klasse Text. // @@ -171,9 +174,7 @@ class Text */ function encodeHtmlSpecialChars( $inhalt ) { - $inhalt = DocumentElement::replaceHtmlChars( $inhalt ); - - return $inhalt; + return Text::replaceHtmlChars( $inhalt ); }