Changeset 11290
- Timestamp:
- Apr 14, 2009, 11:35:11 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/trunk/webapp/modules/admin/lib/db_admin.php
r11231 r11290 1060 1060 $profile_req = $requests['profile']; 1061 1061 1062 if ( $profile_req) {1062 if (is_array($profile_req)) { 1063 1063 $profile_cond = array(); 1064 1064 foreach ($profile_list as $key => $value) { 1065 if ( $profile_req[$key] && array_key_exists( $key, $profile_req )) {1065 if (isset($profile_req[$key])) { 1066 1066 if ($value['form_type'] == 'select' || $value['form_type'] == 'radio') { 1067 1067 $profile_cond[$key] = intval($profile_req[$key]);
Note: See TracChangeset
for help on using the changeset viewer.