changeset 292:51fd76a8d8c9

Fix a 100L.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 25 Nov 2013 03:12:21 +0200
parents ce30a9083b40
children 19964ec7f552
files msitegen.inc.php
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;
         }