Ticket #5810: version_change.diff

File version_change.diff, 4.8 KB (added by ffemtcj, 5 years ago)

Changes references from 2.4 to 2.5

  • wp-includes/class-phpass.php

     
    22/** 
    33 * Portable PHP password hashing framework. 
    44 * @package phpass 
    5  * @since 2.4 
     5 * @since 2.5 
    66 * @version 0.1 
    77 * @link http://www.openwall.com/phpass/ 
    88 */ 
  • wp-includes/comment-template.php

     
    524524 * @since 0.71 
    525525 * @uses get_trackback_url() Gets the trackback url for the current post 
    526526 * 
    527  * @param bool $deprecated Remove backwards compat in 2.4 
     527 * @param bool $deprecated Remove backwards compat in 2.5 
    528528 * @return void|string Should only be used to echo the trackback URL, use get_trackback_url() for the result instead. 
    529529 */ 
    530530function trackback_url($deprecated = true) { 
  • wp-includes/deprecated.php

     
    12671267 * documentation_link() - Unused Admin function 
    12681268 * @since 2.0 
    12691269 * @param string $deprecated Unknown 
    1270  * @deprecated 2.4 
     1270 * @deprecated 2.5 
    12711271 */ 
    12721272function documentation_link( $deprecated = '' ) { 
    1273         _deprecated_function( __FUNCTION__, '2.4', '' ); 
     1273        _deprecated_function( __FUNCTION__, '2.5', '' ); 
    12741274        return; 
    12751275} 
    12761276 
  • wp-includes/feed.php

     
    200200 * 
    201201 * @package WordPress 
    202202 * @subpackage Feed 
    203  * @since 2.4 
     203 * @since 2.5 
    204204 * 
    205205 * @param string $data input string 
    206206 * @return array $result array(type, value) 
  • wp-includes/functions.php

     
    16211621 * 
    16221622 * @package WordPress 
    16231623 * @package Debug 
    1624  * @since 2.4 
     1624 * @since 2.5 
    16251625 * @access private 
    16261626 * 
    16271627 * @uses do_action() Calls 'deprecated_function_run' and passes the function name and what to use instead. 
     
    16561656 * 
    16571657 * @package WordPress 
    16581658 * @package Debug 
    1659  * @since 2.4 
     1659 * @since 2.5 
    16601660 * @access private 
    16611661 * 
    16621662 * @uses do_action() Calls 'deprecated_file_included' and passes the file name and what to use instead. 
  • wp-includes/link-template.php

     
    294294 * 
    295295 * @package WordPress 
    296296 * @subpackage Feed 
    297  * @since 2.4 
     297 * @since 2.5 
    298298 * 
    299299 * @param string Descriptive text 
    300300 * @param int Optional post ID.  Default to current post. 
     
    334334 * 
    335335 * @package WordPress 
    336336 * @subpackage Feed 
    337  * @since 2.4 
     337 * @since 2.5 
    338338 * 
    339339 * @param int $cat_id ID of a category 
    340340 * @param string $feed Feed type 
  • wp-includes/pluggable.php

     
    12281228 * @param bool $remember Optional. Remember that the user is logged in 
    12291229 */ 
    12301230function wp_setcookie($username, $password = '', $already_md5 = false, $home = '', $siteurl = '', $remember = false) { 
    1231         _deprecated_function( __FUNCTION__, '2.4', 'wp_set_auth_cookie()' ); 
     1231        _deprecated_function( __FUNCTION__, '2.5', 'wp_set_auth_cookie()' ); 
    12321232        $user = get_userdatabylogin($username); 
    12331233        wp_set_auth_cookie($user->ID, $remember); 
    12341234} 
     
    12431243 * @see wp_clear_auth_cookie() 
    12441244 */ 
    12451245function wp_clearcookie() { 
    1246         _deprecated_function( __FUNCTION__, '2.4', 'wp_clear_auth_cookie()' ); 
     1246        _deprecated_function( __FUNCTION__, '2.5', 'wp_clear_auth_cookie()' ); 
    12471247        wp_clear_auth_cookie(); 
    12481248} 
    12491249endif; 
     
    12611261 * @return bool Always returns false 
    12621262 */ 
    12631263function wp_get_cookie_login() { 
    1264         _deprecated_function( __FUNCTION__, '2.4', '' ); 
     1264        _deprecated_function( __FUNCTION__, '2.5', '' ); 
    12651265        return false; 
    12661266} 
    12671267endif; 
  • wp-includes/post.php

     
    268268 * 
    269269 * @package WordPress 
    270270 * @subpackage Post 
    271  * @since 2.4 
     271 * @since 2.5 
    272272 * 
    273273 * @return array 
    274274 */ 
     
    291291 * 
    292292 * @package WordPress 
    293293 * @subpackage Page 
    294  * @since 2.4 
     294 * @since 2.5 
    295295 * 
    296296 * @return array 
    297297 */ 
     
    341341 * 
    342342 * @package WordPress 
    343343 * @subpackage Post 
    344  * @since 2.4 
     344 * @since 2.5 
    345345 * 
    346346 * @uses $wpdb 
    347347 * @uses $posts {@internal Missing Description}}