Changeset 6793
- Timestamp:
- 04/04/2018 04:57:31 PM (8 years ago)
- Location:
- trunk/src/includes
- Files:
-
- 2 edited
-
replies/functions.php (modified) (1 diff)
-
topics/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/replies/functions.php
r6791 r6793 2092 2092 <channel> 2093 2093 2094 <title><?php echo $title; ?></title>2094 <title><?php echo $title; // Already escaped ?></title> 2095 2095 <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" /> 2096 2096 <link><?php self_link(); ?></link> 2097 2097 <description><?php //?></description> 2098 2098 <lastBuildDate><?php echo date( 'r' ); ?></lastBuildDate> 2099 <generator> https://bbpress.org/?v=<?php bbp_version();?></generator>2099 <generator><?php echo esc_url_raw( 'https://bbpress.org/?v=' . convert_chars( bbp_get_version() ) ) ?></generator> 2100 2100 <language><?php bloginfo_rss( 'language' ); ?></language> 2101 2101 -
trunk/src/includes/topics/functions.php
r6791 r6793 3697 3697 <channel> 3698 3698 3699 <title><?php echo $title; ?></title>3699 <title><?php echo $title; // Already escaped ?></title> 3700 3700 <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" /> 3701 3701 <link><?php self_link(); ?></link> 3702 3702 <description><?php //?></description> 3703 3703 <lastBuildDate><?php echo date( 'r' ); ?></lastBuildDate> 3704 <generator> https://bbpress.org/?v=<?php bbp_version(); ?></generator>3704 <generator><?php echo esc_url_raw( 'https://bbpress.org/?v=' . convert_chars( bbp_get_version() ) ); ?></generator> 3705 3705 <language><?php bloginfo_rss( 'language' ); ?></language> 3706 3706
Note: See TracChangeset
for help on using the changeset viewer.