Changeset 16108
- Timestamp:
- 2007/09/27 21:31:13 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/class/SC_FormParam.php
r16091 r16108 257 257 foreach($this->keyname as $val) { 258 258 if($keyname == "" || $keyname == $val) { 259 $arrRet[$val] = $this->param[$cnt];259 $arrRet[$val] = isset($this->param[$cnt]) ? $this->param[$cnt] : ""; 260 260 $cnt++; 261 261 } … … 269 269 foreach ($this->keyname as $val) { 270 270 if ($this->input_db[$cnt]) { 271 $arrRet[$val] = $this->param[$cnt];271 $arrRet[$val] = isset($this->param[$cnt]) ? $this->param[$cnt] : ""; 272 272 } 273 273 $cnt++;
Note: See TracChangeset
for help on using the changeset viewer.