openrat-cms

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

commit 561f53d882187d1342b3917e52c6ad99dc16996b
parent ef42834cf5345963f3f38061b3e105789ada1864
Author: dankert <devnull@localhost>
Date:   Mon, 18 Jan 2010 23:26:23 +0100

Bei setInt() den Wert auf int casten.

Diffstat:
MserviceClasses/Sql.class.php | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/serviceClasses/Sql.class.php b/serviceClasses/Sql.class.php @@ -255,7 +255,7 @@ class Sql */ function setInt( $name,$value ) { - $this->data[ $name ] = array( 'type'=>'int','value'=>$value ); + $this->data[ $name ] = array( 'type'=>'int','value'=>(int)$value ); }