commit | 8761ef56b465a190489ed555c6a0ab58470bfc73 | [log] [tgz] |
---|---|---|
author | Pascal Kriete <pascal.kriete@ellislab.com> | Mon Feb 14 13:13:52 2011 -0500 |
committer | Pascal Kriete <pascal.kriete@ellislab.com> | Mon Feb 14 13:13:52 2011 -0500 |
tree | 743804908a675e6433b4e1ae51f50dcd7c919d8f | |
parent | 23351dc30a1787d30a97dd0a8ba83d6e312a5a2f [diff] [blame] |
Uppercasing some stray lowercase keywords for code consistency
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php index 745fb7c..c6d7c29 100644 --- a/system/libraries/Form_validation.php +++ b/system/libraries/Form_validation.php
@@ -1177,7 +1177,7 @@ { if ( ! is_numeric($str)) { - return false; + return FALSE; } return $str > $min; } @@ -1195,7 +1195,7 @@ { if ( ! is_numeric($str)) { - return false; + return FALSE; } return $str < $max; }