Fixed a bug in the Form Validation library where multiple callbacks weren't working (#6110)
diff --git a/system/libraries/Form_validation.php b/system/libraries/Form_validation.php
index f8077b8..1497d85 100644
--- a/system/libraries/Form_validation.php
+++ b/system/libraries/Form_validation.php
@@ -601,7 +601,7 @@
 				// If the field isn't required and we just processed a callback we'll move on...
 				if ( ! in_array('required', $rules, TRUE) AND $result !== FALSE)
 				{
-					return;
+					continue;
 				}
 			}
 			else