Changeset 14947 for trunk/wp-app.php
- Timestamp:
- 05/26/2010 05:01:21 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-app.php
r14315 r14947 1151 1151 <entry xmlns="<?php echo $this->ATOM_NS ?>" 1152 1152 xmlns:app="<?php echo $this->ATOMPUB_NS ?>" xml:lang="<?php echo get_option('rss_language'); ?>"> 1153 <id><?php the_guid($GLOBALS['post']->ID); ?></id>1153 <id><?php esc_url( the_guid( $GLOBALS['post']->ID ) ); ?></id> 1154 1154 <?php list($content_type, $content) = prep_atom_text_construct(get_the_title()); ?> 1155 1155 <title type="<?php echo $content_type ?>"><?php echo $content ?></title> … … 1168 1168 <?php if ($GLOBALS['post']->post_type == 'attachment') { ?> 1169 1169 <link rel="edit-media" href="<?php $this->the_media_url() ?>" /> 1170 <content type="<?php echo $GLOBALS['post']->post_mime_type ?>" src="<?php the_guid(); ?>"/>1170 <content type="<?php echo $GLOBALS['post']->post_mime_type ?>" src="<?php esc_url( the_guid() ); ?>"/> 1171 1171 <?php } else { ?> 1172 1172 <link href="<?php the_permalink_rss() ?>" />
Note: See TracChangeset
for help on using the changeset viewer.