Changeset 4656 for branches/2.0/wp-admin/edit-form-advanced.php
- Timestamp:
- 12/21/06 10:10:04 (2 years ago)
- Files:
-
- branches/2.0/wp-admin/edit-form-advanced.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.0/wp-admin/edit-form-advanced.php
r4632 r4656 212 212 <input name="referredby" type="hidden" id="referredby" value="<?php 213 213 if ( !empty($_REQUEST['popupurl']) ) 214 echo wp_specialchars($_REQUEST['popupurl']);215 else if ( url_to_postid( wp_get_referer()) == $post_ID )214 echo attribute_escape(stripslashes($_REQUEST['popupurl'])); 215 else if ( url_to_postid(stripslashes(wp_get_referer())) == $post_ID ) 216 216 echo 'redo'; 217 217 else 218 echo wp_specialchars(wp_get_referer());218 echo attribute_escape(stripslashes(wp_get_referer())); 219 219 ?>" /></p> 220 220
