Index: branches/dev/html/test/adachi/SC_FormParamsManager.php
===================================================================
--- branches/dev/html/test/adachi/SC_FormParamsManager.php	(revision 13567)
+++ branches/dev/html/test/adachi/SC_FormParamsManager.php	(revision 13568)
@@ -64,5 +64,5 @@
                 
                 if ($objValidator->validate($objParam)->is_error()) {
-                    $this->arrErr[$_key] = $objValidate->getErrorMessage();
+                    $this->arrErr[$_key] = $objValidator->getErrorMessage();
                 }
             }
@@ -71,4 +71,9 @@
         // Group Validation
         foreach ($arrGroups as $group => $_value) {
+            // ´û¤Ë¥¨¥é¡¼¤¬¤¢¤ë¾ì¹ç¤Ïvalidation¤ò¹Ô¤ï¤Ê¤¤
+            if (array_key_exists(array_keys($value), $this->arrErr)) {
+                continue;
+            }
+            
             $objValidator = SC_Validate::factory('GROUP');
             if ($objValidator->validate($arrGroups[$group])->is_error()) {
@@ -78,4 +83,6 @@
         
         // ¿Æ»Ò validation
+        
+        return $this;
     }
     function getEM(){
