Changeset 3258893
- Timestamp:
- 03/20/2025 06:19:11 AM (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zoho-crm-forms/trunk/includes/crmwebformfieldsfuntions.php
r3178280 r3258893 140 140 if (isset($users_list['users'][0]['email'])) 141 141 for ($i = 0; $i < count($users_list['users']); $i++) { 142 $htmlcontent_option .= "<option id='{$users_list['users'][$i]['email']}' value='{$users_list['users'][$i]['id']}'"; 142 $useremail = esc_html($users_list['users'][$i]['email']); 143 $userid = esc_html($users_list['users'][$i]['id']); 144 $htmlcontent_option .= "<option id='{$useremail}' value='{$userid}'"; 143 145 if ($users_list['users'][$i]['id'] == $config_fields->assigned_to) { 144 146 $htmlcontent_option .= " selected"; 145 147 } 146 $htmlcontent_option .= ">{$user s_list['users'][$i]['email']}</option>";148 $htmlcontent_option .= ">{$useremail}</option>"; 147 149 } 148 150
Note: See TracChangeset
for help on using the changeset viewer.