Renaming equal_to_greater_than to greater_than_equal_to, equal_to_less_than to less_than_equal_to
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php
index 1b2907a..3ee3cf9 100644
--- a/system/libraries/Form_validation.php
+++ b/system/libraries/Form_validation.php
@@ -1139,7 +1139,7 @@
* @param string
* @return bool
*/
- function equal_to_greater_than($str, $min)
+ function greater_than_equal_to($str, $min)
{
if ( ! is_numeric($str))
{
@@ -1174,7 +1174,7 @@
* @param string
* @return bool
*/
- function equal_to_less_than($str, $max)
+ function less_than_equal_to($str, $max)
{
if ( ! is_numeric($str))
{