Ticket #5810: version_change.diff
File version_change.diff, 4.8 KB (added by , 17 years ago) |
---|
-
wp-includes/class-phpass.php
2 2 /** 3 3 * Portable PHP password hashing framework. 4 4 * @package phpass 5 * @since 2. 45 * @since 2.5 6 6 * @version 0.1 7 7 * @link http://www.openwall.com/phpass/ 8 8 */ -
wp-includes/comment-template.php
524 524 * @since 0.71 525 525 * @uses get_trackback_url() Gets the trackback url for the current post 526 526 * 527 * @param bool $deprecated Remove backwards compat in 2. 4527 * @param bool $deprecated Remove backwards compat in 2.5 528 528 * @return void|string Should only be used to echo the trackback URL, use get_trackback_url() for the result instead. 529 529 */ 530 530 function trackback_url($deprecated = true) { -
wp-includes/deprecated.php
1267 1267 * documentation_link() - Unused Admin function 1268 1268 * @since 2.0 1269 1269 * @param string $deprecated Unknown 1270 * @deprecated 2. 41270 * @deprecated 2.5 1271 1271 */ 1272 1272 function documentation_link( $deprecated = '' ) { 1273 _deprecated_function( __FUNCTION__, '2. 4', '' );1273 _deprecated_function( __FUNCTION__, '2.5', '' ); 1274 1274 return; 1275 1275 } 1276 1276 -
wp-includes/feed.php
200 200 * 201 201 * @package WordPress 202 202 * @subpackage Feed 203 * @since 2. 4203 * @since 2.5 204 204 * 205 205 * @param string $data input string 206 206 * @return array $result array(type, value) -
wp-includes/functions.php
1621 1621 * 1622 1622 * @package WordPress 1623 1623 * @package Debug 1624 * @since 2. 41624 * @since 2.5 1625 1625 * @access private 1626 1626 * 1627 1627 * @uses do_action() Calls 'deprecated_function_run' and passes the function name and what to use instead. … … 1656 1656 * 1657 1657 * @package WordPress 1658 1658 * @package Debug 1659 * @since 2. 41659 * @since 2.5 1660 1660 * @access private 1661 1661 * 1662 1662 * @uses do_action() Calls 'deprecated_file_included' and passes the file name and what to use instead. -
wp-includes/link-template.php
294 294 * 295 295 * @package WordPress 296 296 * @subpackage Feed 297 * @since 2. 4297 * @since 2.5 298 298 * 299 299 * @param string Descriptive text 300 300 * @param int Optional post ID. Default to current post. … … 334 334 * 335 335 * @package WordPress 336 336 * @subpackage Feed 337 * @since 2. 4337 * @since 2.5 338 338 * 339 339 * @param int $cat_id ID of a category 340 340 * @param string $feed Feed type -
wp-includes/pluggable.php
1228 1228 * @param bool $remember Optional. Remember that the user is logged in 1229 1229 */ 1230 1230 function 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()' ); 1232 1232 $user = get_userdatabylogin($username); 1233 1233 wp_set_auth_cookie($user->ID, $remember); 1234 1234 } … … 1243 1243 * @see wp_clear_auth_cookie() 1244 1244 */ 1245 1245 function wp_clearcookie() { 1246 _deprecated_function( __FUNCTION__, '2. 4', 'wp_clear_auth_cookie()' );1246 _deprecated_function( __FUNCTION__, '2.5', 'wp_clear_auth_cookie()' ); 1247 1247 wp_clear_auth_cookie(); 1248 1248 } 1249 1249 endif; … … 1261 1261 * @return bool Always returns false 1262 1262 */ 1263 1263 function wp_get_cookie_login() { 1264 _deprecated_function( __FUNCTION__, '2. 4', '' );1264 _deprecated_function( __FUNCTION__, '2.5', '' ); 1265 1265 return false; 1266 1266 } 1267 1267 endif; -
wp-includes/post.php
268 268 * 269 269 * @package WordPress 270 270 * @subpackage Post 271 * @since 2. 4271 * @since 2.5 272 272 * 273 273 * @return array 274 274 */ … … 291 291 * 292 292 * @package WordPress 293 293 * @subpackage Page 294 * @since 2. 4294 * @since 2.5 295 295 * 296 296 * @return array 297 297 */ … … 341 341 * 342 342 * @package WordPress 343 343 * @subpackage Post 344 * @since 2. 4344 * @since 2.5 345 345 * 346 346 * @uses $wpdb 347 347 * @uses $posts {@internal Missing Description}}