]> git.mxchange.org Git - core.git/commitdiff
Assert only if requested so :(
authorRoland Häder <roland@mxchange.org>
Fri, 23 Mar 2012 20:34:23 +0000 (20:34 +0000)
committerRoland Häder <roland@mxchange.org>
Fri, 23 Mar 2012 20:34:23 +0000 (20:34 +0000)
inc/classes/main/class_BaseFrameworkSystem.php

index 255a7f614352ed8c6580a2e32019da200a248296..fed352a4cfb4e371a635529a59b74540a52cac05 100644 (file)
@@ -2007,8 +2007,11 @@ class BaseFrameworkSystem extends stdClass implements FrameworkInterface {
                        $ret = (double) $ret;
                } // END - if
 
-               // Has the whole value changed?
-               assert(($assertMismatch === true) && ('' . $ret . '' != '' . $num . '') && (!is_null($num)));
+               // Assert only if requested
+               if ($assertMismatch === true) {
+                       // Has the whole value changed?
+                       assert(($assertMismatch === true)('' . $ret . '' != '' . $num . '') && (!is_null($num)));
+               } // END - if
 
                // Return result
                return $ret;