Ticket #9357: user-edit.php.patch
| File user-edit.php.patch, 1.1 KB (added by Txanny, 3 years ago) |
|---|
-
wp-admin/user-edit.php
321 321 </tr> 322 322 323 323 <tr> 324 <th><label for="aim"><?php _e('AIM')?></label></th>324 <th><label for="aim"><?php echo apply_filters('user_aim_label', __('AIM')); ?></label></th> 325 325 <td><input type="text" name="aim" id="aim" value="<?php echo $profileuser->aim ?>" class="regular-text" /></td> 326 326 </tr> 327 327 328 328 <tr> 329 <th><label for="yim"><?php _e('Yahoo IM')?></label></th>329 <th><label for="yim"><?php echo apply_filters('user_yahoo_label',__('Yahoo IM')); ?></label></th> 330 330 <td><input type="text" name="yim" id="yim" value="<?php echo $profileuser->yim ?>" class="regular-text" /></td> 331 331 </tr> 332 332 333 333 <tr> 334 <th><label for="jabber"><?php _e('Jabber / Google Talk')?></label></th>334 <th><label for="jabber"><?php echo apply_filters('user_jabber_label', __('Jabber / Google Talk')); ?></label></th> 335 335 <td><input type="text" name="jabber" id="jabber" value="<?php echo $profileuser->jabber ?>" class="regular-text" /></td> 336 336 </tr> 337 337 </table>
