Changeset 4034

Show
Ignore:
Timestamp:
07/23/06 18:41:48 (2 years ago)
Author:
ryan
Message:

Escape quotes. Props westi. fixes #2923

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.0/wp-admin/link-categories.php

    r3977 r4034  
    183183<tr> 
    184184    <th width="33%" scope="row"><?php _e('Before Link:') ?></th> 
    185     <td width="67%"><input type="text" name="text_before_link" size="45" value="<?php echo wp_specialchars($row->text_before_link)?>" /></td> 
     185    <td width="67%"><input type="text" name="text_before_link" size="45" value="<?php echo wp_specialchars($row->text_before_link,'double')?>" /></td> 
    186186</tr> 
    187187<tr> 
    188188<th scope="row"><?php _e('Between Link and Description:') ?></th> 
    189 <td><input type="text" name="text_after_link" size="45" value="<?php echo wp_specialchars($row->text_after_link)?>" /></td> 
     189<td><input type="text" name="text_after_link" size="45" value="<?php echo wp_specialchars($row->text_after_link,'double')?>" /></td> 
    190190</tr> 
    191191<tr> 
    192192<th scope="row"><?php _e('After Link:') ?></th> 
    193 <td><input type="text" name="text_after_all" size="45" value="<?php echo wp_specialchars($row->text_after_all)?>"/></td> 
     193<td><input type="text" name="text_after_all" size="45" value="<?php echo wp_specialchars($row->text_after_all,'double')?>"/></td> 
    194194</tr> 
    195195</table>