Changeset 4803
- Timestamp:
- 07/22/2011 04:56:30 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/deprecated/1.3.php
r4738 r4803 319 319 } 320 320 321 /** 322 * In BP 1.3, these functions were renamed for greater consistency 323 */ 324 function bp_forum_directory_permalink() { 325 _deprecated_function( __FUNCTION__, '1.3', 'bp_forums_directory_permalink()' ); 326 bp_forums_directory_permalink(); 327 } 328 function bp_get_forum_directory_permalink() { 329 _deprecated_function( __FUNCTION__, '1.3', 'bp_get_forums_directory_permalink()' ); 330 return bp_get_forums_directory_permalink(); 331 } 332 321 333 /** Theme *********************************************************************/ 322 334 -
trunk/bp-forums/bp-forums-screens.php
r4596 r4803 52 52 } else { 53 53 bp_core_add_message( __( 'Please pick the group forum where you would like to post this topic.', 'buddypress' ), 'error' ); 54 bp_core_redirect( add_query_arg( 'new', '', bp_get_forum _directory_permalink() ) );54 bp_core_redirect( add_query_arg( 'new', '', bp_get_forums_directory_permalink() ) ); 55 55 } 56 56 -
trunk/bp-themes/bp-default/forums/single/edit.php
r4596 r4803 14 14 15 15 <li> 16 <a href="<?php bp_forum _directory_permalink(); ?>"><?php _e( 'Forum Directory', 'buddypress'); ?></a>16 <a href="<?php bp_forums_directory_permalink(); ?>"><?php _e( 'Forum Directory', 'buddypress'); ?></a> 17 17 </li> 18 18 -
trunk/bp-themes/bp-default/forums/single/forum.php
r4596 r4803 23 23 24 24 <li> 25 <a href="<?php bp_forum _directory_permalink() ?>"><?php _e( 'Forum Directory', 'buddypress') ?></a>25 <a href="<?php bp_forums_directory_permalink() ?>"><?php _e( 'Forum Directory', 'buddypress') ?></a> 26 26 </li> 27 27 -
trunk/bp-themes/bp-default/forums/single/topic.php
r4596 r4803 41 41 42 42 <li> 43 <a href="<?php bp_forum _directory_permalink() ?>"><?php _e( 'Forum Directory', 'buddypress') ?></a>43 <a href="<?php bp_forums_directory_permalink() ?>"><?php _e( 'Forum Directory', 'buddypress') ?></a> 44 44 </li> 45 45 -
trunk/bp-themes/bp-default/groups/single/forum.php
r4596 r4803 21 21 22 22 <li> 23 <a href="<?php bp_forum _directory_permalink() ?>"><?php _e( 'Forum Directory', 'buddypress') ?></a>23 <a href="<?php bp_forums_directory_permalink() ?>"><?php _e( 'Forum Directory', 'buddypress') ?></a> 24 24 </li> 25 25 -
trunk/bp-themes/bp-default/groups/single/forum/edit.php
r4596 r4803 14 14 15 15 <li> 16 <a href="<?php bp_forum _directory_permalink(); ?>"><?php _e( 'Forum Directory', 'buddypress'); ?></a>16 <a href="<?php bp_forums_directory_permalink(); ?>"><?php _e( 'Forum Directory', 'buddypress'); ?></a> 17 17 </li> 18 18 -
trunk/bp-themes/bp-default/groups/single/forum/topic.php
r4759 r4803 14 14 15 15 <li> 16 <a href="<?php bp_forum _directory_permalink() ?>"><?php _e( 'Forum Directory', 'buddypress') ?></a>16 <a href="<?php bp_forums_directory_permalink() ?>"><?php _e( 'Forum Directory', 'buddypress') ?></a> 17 17 </li> 18 18
Note: See TracChangeset
for help on using the changeset viewer.