Changeset 2055
- Timestamp:
- 04/17/2009 10:44:04 AM (17 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
bb-includes/defaults.bb-filters.php (modified) (1 diff)
-
bb-templates/kakumei/rss2.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bb-includes/defaults.bb-filters.php
r1935 r2055 130 130 // Actions 131 131 132 add_action( 'bb_head', 'bb_generator' ); 132 133 add_action('bb_head', 'bb_template_scripts'); 133 134 add_action('bb_head', 'wp_print_scripts'); -
trunk/bb-templates/kakumei/rss2.php
r1791 r2055 1 <?php header('Content-Type: text/xml; charset=UTF-8'); ?> 2 <?php echo '<?xml version="1.0" encoding="UTF-8"?>'; ?> 3 <!-- generator="bbPress" --> 1 <?php 2 header( 'Content-Type: text/xml; charset=UTF-8' ); 3 echo '<' . '?xml version="1.0" encoding="UTF-8"?' . '>' . "/n"; 4 bb_generator( 'comment' ); 5 ?> 4 6 <rss version="2.0" 5 7 xmlns:content="http://purl.org/rss/1.0/modules/content/" 6 8 xmlns:dc="http://purl.org/dc/elements/1.1/" 7 xmlns:atom="http://www.w3.org/2005/Atom" 8 > 9 xmlns:atom="http://www.w3.org/2005/Atom"> 9 10 <channel> 10 11 <title><?php echo $title; ?></title> … … 13 14 <language><?php wp_specialchars( bb_option('language') ); ?></language> 14 15 <pubDate><?php echo gmdate('D, d M Y H:i:s +0000'); ?></pubDate> 15 < generator>bbpress <?php bb_option('version'); ?></generator>16 <?php bb_generator( 'rss2' ); ?> 16 17 <textInput> 17 18 <title><![CDATA[<?php _e('Search'); ?>]]></title>
Note: See TracChangeset
for help on using the changeset viewer.