Changeset 1007
- Timestamp:
- 03/07/07 15:07:03 (2 years ago)
- Files:
-
- devel/profile/edit.php (modified) (1 diff)
- devel/profile/profile.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
devel/profile/edit.php
r997 r1007 135 135 foreach($data['profile:details'] as $datatype) { 136 136 if (is_array($datatype)) { 137 $fname = !empty($datatype[ 0]) ? $datatype[0] : '';137 $fname = !empty($datatype[1]) ? $datatype[1] : ''; 138 138 $ftype = !empty($datatype[2]) ? $datatype[2] : ''; 139 139 // Otherwise map things the new way! devel/profile/profile.class.php
r910 r1007 285 285 function field_display ($field, $allvalues) { 286 286 287 global $data ;287 global $data, $messages; 288 288 289 289 $run_result = ''; … … 296 296 $fblurb = !empty($field[3]) ? $field[3] : ''; 297 297 $fusertype = !empty($field[4]) ? $field[4] : ''; 298 $finvisible = false; 299 $frequired = false; 298 300 // Otherwise map things the new way! 299 301 } else {
