Changeset 23531
- Timestamp:
- 2014/06/05 23:08:00 (9 years ago)
- Location:
- branches/version-2_13-dev
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/data/class/SC_CheckError.php
r23514 r23531 116 116 // $this->createParam($value); 117 117 if (strlen($this->arrParam[$value[0]]) == 0) { 118 $this->arrErr[$value[0]] = '※ ' . $value[ 0] . 'が入力されていません。<br />';118 $this->arrErr[$value[0]] = '※ ' . $value[1] . 'が入力されていません。<br />'; 119 119 } 120 120 } -
branches/version-2_13-dev/tests/class/SC_CheckError/SC_CheckError_EXIST_CHECK_REVERSETest.php
r22857 r23531 46 46 $objErr->doFunc(array('form', 'EXIST_CHECK_REVERSE') ,array('EXIST_CHECK_REVERSE')); 47 47 48 $this->expected = '※ formが入力されていません。<br />';48 $this->expected = '※ EXIST_CHECK_REVERSEが入力されていません。<br />'; 49 49 $this->actual = $objErr->arrErr['form']; 50 50 $this->verify(''); … … 57 57 $objErr->doFunc(array('form', 'EXIST_CHECK_REVERSE') ,array('EXIST_CHECK_REVERSE')); 58 58 59 $this->expected = '※ formが入力されていません。<br />';59 $this->expected = '※ EXIST_CHECK_REVERSEが入力されていません。<br />'; 60 60 $this->actual = $objErr->arrErr['form']; 61 61 $this->verify('');
Note: See TracChangeset
for help on using the changeset viewer.