Index: /branches/version-2_13-dev/data/class/SC_FormParam.php
===================================================================
--- /branches/version-2_13-dev/data/class/SC_FormParam.php	(revision 23632)
+++ /branches/version-2_13-dev/data/class/SC_FormParam.php	(revision 23634)
@@ -613,5 +613,9 @@
             foreach ($this->keyname as $index=>$key) {
                 foreach ($arrSetting as $item) {
-                    $ret[$key][$item] = $this->{$item}[$index];
+                    if ($item == 'arrDefault') {
+                        $ret[$key]['default'] = $this->{$item}[$key];
+                    } else {
+                        $ret[$key][$item] = $this->{$item}[$index];
+                    }
                 }
             }
@@ -626,10 +630,18 @@
                 $ret = array();
                 foreach ($arrSetting as $item) {
-                    $ret[$item] = $this->{$item}[$index];
+                    if ($item == 'arrDefault') {
+                        $ret['default'] = $this->{$item}[$keyname];
+                    } else {
+                        $ret[$item] = $this->{$item}[$index];
+                    }
                 }
                 return $ret;
             }
 
-            return $this->{$target}[$index];
+            if ($target == 'default') {
+                return $this->arrDefault[$keyname];
+            } else {
+                return $this->{$target}[$index];
+            }
         }
     }
