# HG changeset patch # User Matti Hamalainen # Date 1385341941 -7200 # Node ID 51fd76a8d8c93ba830bd261973735cd0fa1492c3 # Parent ce30a9083b402864edc2fd24bdae8966f23f7a37 Fix a 100L. diff -r ce30a9083b40 -r 51fd76a8d8c9 msitegen.inc.php --- a/msitegen.inc.php Mon Nov 25 03:12:09 2013 +0200 +++ b/msitegen.inc.php Mon Nov 25 03:12:21 2013 +0200 @@ -363,7 +363,7 @@ case VT_INT: case VT_BOOL: // Integer values checked against .. value - if (!stChkRequestDataItem($check[0], to_int($data), $check[2])) + if (!stChkRequestDataItem($check[0], intval($data), $check[2])) return stErrorStrF($check[3], $data); break; }