Filters for IM names in user profile, props Txanny, fixes #9357

git-svn-id: http://svn.automattic.com/wordpress/trunk@10819 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2009-03-19 09:16:26 +00:00
parent 64fe95ae97
commit 015c9e542e
1 changed files with 3 additions and 3 deletions

View File

@ -317,17 +317,17 @@ else
</tr>
<tr>
<th><label for="aim"><?php _e('AIM') ?></label></th>
<th><label for="aim"><?php echo apply_filters('user_aim_label', __('AIM')); ?></label></th>
<td><input type="text" name="aim" id="aim" value="<?php echo $profileuser->aim ?>" class="regular-text" /></td>
</tr>
<tr>
<th><label for="yim"><?php _e('Yahoo IM') ?></label></th>
<th><label for="yim"><?php echo apply_filters('user_yim_label', __('Yahoo IM')); ?></label></th>
<td><input type="text" name="yim" id="yim" value="<?php echo $profileuser->yim ?>" class="regular-text" /></td>
</tr>
<tr>
<th><label for="jabber"><?php _e('Jabber / Google Talk') ?></label></th>
<th><label for="jabber"><?php echo apply_filters('user_jabber_label', __('Jabber / Google Talk')); ?></label></th>
<td><input type="text" name="jabber" id="jabber" value="<?php echo $profileuser->jabber ?>" class="regular-text" /></td>
</tr>
</table>