Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
07/22/2011 04:56:30 PM (14 years ago)
Author:
boonebgorges
Message:

Properly deprecate bp_get_forum_directory_permalink(), and replace it with proper function names throughout

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core/deprecated/1.3.php

    r4738 r4803  
    319319}
    320320
     321/**
     322 * In BP 1.3, these functions were renamed for greater consistency
     323 */
     324function 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   
    321333/** Theme *********************************************************************/
    322334
Note: See TracChangeset for help on using the changeset viewer.