Changeset 19784
- Timestamp:
- 01/29/2012 07:56:33 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/export.php
r19233 r19784 332 332 <description><?php bloginfo_rss( 'description' ); ?></description> 333 333 <pubDate><?php echo date( 'D, d M Y H:i:s +0000' ); ?></pubDate> 334 <language><?php echo get_option( 'rss_language' ); ?></language>334 <language><?php bloginfo_rss( 'language' ); ?></language> 335 335 <wp:wxr_version><?php echo WXR_VERSION; ?></wp:wxr_version> 336 336 <wp:base_site_url><?php echo wxr_site_url(); ?></wp:base_site_url> -
trunk/wp-admin/includes/schema.php
r19780 r19784 410 410 'blacklist_keys' => '', 411 411 'comment_registration' => 0, 412 'rss_language' => 'en',413 412 'html_type' => 'text/html', 414 413 … … 525 524 526 525 // Delete unused options 527 $unusedoptions = array ('blodotgsping_url', 'bodyterminator', 'emailtestonly', 'phoneemail_separator', 'smilies_directory', 'subjectprefix', 'use_bbcode', 'use_blodotgsping', 'use_phoneemail', 'use_quicktags', 'use_weblogsping', 'weblogs_cache_file', 'use_preview', 'use_htmltrans', 'smilies_directory', 'fileupload_allowedusers', 'use_phoneemail', 'default_post_status', 'default_post_category', 'archive_mode', 'time_difference', 'links_minadminlevel', 'links_use_adminlevels', 'links_rating_type', 'links_rating_char', 'links_rating_ignore_zero', 'links_rating_single_image', 'links_rating_image0', 'links_rating_image1', 'links_rating_image2', 'links_rating_image3', 'links_rating_image4', 'links_rating_image5', 'links_rating_image6', 'links_rating_image7', 'links_rating_image8', 'links_rating_image9', 'weblogs_cacheminutes', 'comment_allowed_tags', 'search_engine_friendly_urls', 'default_geourl_lat', 'default_geourl_lon', 'use_default_geourl', 'weblogs_xml_url', 'new_users_can_blog', '_wpnonce', '_wp_http_referer', 'Update', 'action', 'rich_editing', 'autosave_interval', 'deactivated_plugins', 'can_compress_scripts', 'page_uris', 'update_core', 'update_plugins', 'update_themes', 'doing_cron', 'random_seed', 'rss_excerpt_length', 'secret', 'use_linksupdate', 'default_comment_status_page', 'wporg_popular_tags', 'what_to_show' );526 $unusedoptions = array ('blodotgsping_url', 'bodyterminator', 'emailtestonly', 'phoneemail_separator', 'smilies_directory', 'subjectprefix', 'use_bbcode', 'use_blodotgsping', 'use_phoneemail', 'use_quicktags', 'use_weblogsping', 'weblogs_cache_file', 'use_preview', 'use_htmltrans', 'smilies_directory', 'fileupload_allowedusers', 'use_phoneemail', 'default_post_status', 'default_post_category', 'archive_mode', 'time_difference', 'links_minadminlevel', 'links_use_adminlevels', 'links_rating_type', 'links_rating_char', 'links_rating_ignore_zero', 'links_rating_single_image', 'links_rating_image0', 'links_rating_image1', 'links_rating_image2', 'links_rating_image3', 'links_rating_image4', 'links_rating_image5', 'links_rating_image6', 'links_rating_image7', 'links_rating_image8', 'links_rating_image9', 'weblogs_cacheminutes', 'comment_allowed_tags', 'search_engine_friendly_urls', 'default_geourl_lat', 'default_geourl_lon', 'use_default_geourl', 'weblogs_xml_url', 'new_users_can_blog', '_wpnonce', '_wp_http_referer', 'Update', 'action', 'rich_editing', 'autosave_interval', 'deactivated_plugins', 'can_compress_scripts', 'page_uris', 'update_core', 'update_plugins', 'update_themes', 'doing_cron', 'random_seed', 'rss_excerpt_length', 'secret', 'use_linksupdate', 'default_comment_status_page', 'wporg_popular_tags', 'what_to_show', 'rss_language'); 528 527 foreach ( $unusedoptions as $option ) 529 528 delete_option($option); -
trunk/wp-app.php
r19712 r19784 1078 1078 $last_page = ((int)$last_page == 1 || (int)$last_page == 0) ? null : (int) $last_page; 1079 1079 $self_page = $page > 1 ? $page : null; 1080 ?><feed xmlns="<?php echo $this->ATOM_NS ?>" xmlns:app="<?php echo $this->ATOMPUB_NS ?>" xml:lang="<?php echo get_option('rss_language'); ?>" <?php do_action('app_ns'); ?> >1080 ?><feed xmlns="<?php echo $this->ATOM_NS ?>" xmlns:app="<?php echo $this->ATOMPUB_NS ?>" xml:lang="<?php bloginfo_rss( 'language' ); ?>" <?php do_action('app_ns'); ?> > 1081 1081 <id><?php $this->the_entries_url() ?></id> 1082 1082 <updated><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastpostmodified('GMT'), false); ?></updated> … … 1151 1151 function echo_entry() { ?> 1152 1152 <entry xmlns="<?php echo $this->ATOM_NS ?>" 1153 xmlns:app="<?php echo $this->ATOMPUB_NS ?>" xml:lang="<?php echo get_option('rss_language'); ?>">1153 xmlns:app="<?php echo $this->ATOMPUB_NS ?>" xml:lang="<?php bloginfo_rss( 'language' ); ?>"> 1154 1154 <id><?php the_guid( $GLOBALS['post']->ID ); ?></id> 1155 1155 <?php list($content_type, $content) = prep_atom_text_construct(get_the_title()); ?> -
trunk/wp-includes/feed-atom-comments.php
r18716 r19784 11 11 <feed 12 12 xmlns="http://www.w3.org/2005/Atom" 13 xml:lang="<?php echo get_option('rss_language'); ?>"13 xml:lang="<?php bloginfo_rss( 'language' ); ?>" 14 14 xmlns:thr="http://purl.org/syndication/thread/1.0" 15 15 <?php do_action('atom_ns'); do_action('atom_comments_ns'); ?> -
trunk/wp-includes/feed-atom.php
r17641 r19784 13 13 xmlns="http://www.w3.org/2005/Atom" 14 14 xmlns:thr="http://purl.org/syndication/thread/1.0" 15 xml:lang="<?php echo get_option('rss_language'); ?>"15 xml:lang="<?php bloginfo_rss( 'language' ); ?>" 16 16 xml:base="<?php bloginfo_rss('url') ?>/wp-atom.php" 17 17 <?php do_action('atom_ns'); ?> -
trunk/wp-includes/feed-rss.php
r13113 r19784 17 17 <lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></lastBuildDate> 18 18 <docs>http://backend.userland.com/rss092</docs> 19 <language><?php echo get_option('rss_language'); ?></language>19 <language><?php bloginfo_rss( 'language' ); ?></language> 20 20 <?php do_action('rss_head'); ?> 21 21 -
trunk/wp-includes/feed-rss2.php
r15984 r19784 27 27 <description><?php bloginfo_rss("description") ?></description> 28 28 <lastBuildDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_lastpostmodified('GMT'), false); ?></lastBuildDate> 29 <language><?php echo get_option('rss_language'); ?></language>29 <language><?php bloginfo_rss( 'language' ); ?></language> 30 30 <sy:updatePeriod><?php echo apply_filters( 'rss_update_period', 'hourly' ); ?></sy:updatePeriod> 31 31 <sy:updateFrequency><?php echo apply_filters( 'rss_update_frequency', '1' ); ?></sy:updateFrequency> -
trunk/wp-includes/version.php
r19719 r19784 12 12 * @global int $wp_db_version 13 13 */ 14 $wp_db_version = 19 470;14 $wp_db_version = 19784; 15 15 16 16 /**
Note: See TracChangeset
for help on using the changeset viewer.