Changeset 5394 for trunk/bp-activity/feeds/bp-activity-mygroups-feed.php
- Timestamp:
- 11/27/2011 05:27:37 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity/feeds/bp-activity-mygroups-feed.php
r5302 r5394 25 25 26 26 <channel> 27 <title><?php bp_site_name() ?> | <?php echo $bp->displayed_user->fullname; ?> | <?php _e( 'My Groups - Public Activity', 'buddypress' ) ?></title> 27 <?php /* translators: Member groups activity RSS title - "[Site Name] | [Displayed User Name] | My Groups - Public Activity" */ ?> 28 <title><?php printf( '%1$s | %2$s | %3$s', bp_get_site_name(), bp_get_displayed_user_fullname(), __( 'My Groups - Public Activity', 'buddypress' ) ) ?></title> 28 29 <atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" /> 29 30 <link><?php echo home_url( bp_get_activity_root_slug() . '/#my-groups/' ) ?></link> 30 <description><?php echo $bp->displayed_user->fullname; ?> - <?php _e( 'My Groups - Public Activity', 'buddypress' ) ?></description> 31 <?php /* translators: Member groups activity RSS description - "[Displayed user name] - My Groups - Public Activity" */ ?> 32 <description><?php printf( __( '%1$s - My Groups - Public Activity', 'buddypress' ), bp_get_displayed_user_fullname() ) ?></description> 31 33 <pubDate><?php echo mysql2date('D, d M Y H:i:s O', bp_activity_get_last_updated(), false); ?></pubDate> 32 34 <generator>http://buddypress.org/?v=<?php echo BP_VERSION ?></generator>
Note: See TracChangeset
for help on using the changeset viewer.