openrat-cms

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

commit a79b61491bcdf81d4440e8d9e2f747a5c60666a3
parent bf53349d3af26685fa8d759235b47ee3ded95ca7
Author: dankert <devnull@localhost>
Date:   Mon,  3 May 2004 23:15:30 +0200

Umstellung auf dezimale ASCII-Werte

Diffstat:
objectClasses/Value.class.php | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/objectClasses/Value.class.php b/objectClasses/Value.class.php @@ -20,7 +20,10 @@ // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // --------------------------------------------------------------------------- // $Log$ -// Revision 1.7 2004-05-03 20:21:49 dankert +// Revision 1.8 2004-05-03 21:15:30 dankert +// Umstellung auf dezimale ASCII-Werte +// +// Revision 1.7 2004/05/03 20:21:49 dankert // setzen von ObjectId bei Code-Elementen // // Revision 1.6 2004/05/02 14:41:31 dankert @@ -410,7 +413,7 @@ class Value $ini_chars = parse_ini_file( $conf_languagedir.'/specialchars.ini.'.$conf_php ); foreach( $ini_chars as $key=>$val) { - $text = str_replace( $key,$val,$text ); + $text = str_replace( chr($key),$val,$text ); } return $text; }