mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-12 12:50:28 +00:00
More @since. props SergeyBiryukov, fixes #15445.
git-svn-id: https://develop.svn.wordpress.org/trunk@17071 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -1212,26 +1212,26 @@ function comment_form_title( $noreplytext = false, $replytext = false, $linktopa
|
||||
*
|
||||
* @package WordPress
|
||||
* @uses Walker
|
||||
* @since unknown
|
||||
* @since 2.7.0
|
||||
*/
|
||||
class Walker_Comment extends Walker {
|
||||
/**
|
||||
* @see Walker::$tree_type
|
||||
* @since unknown
|
||||
* @since 2.7.0
|
||||
* @var string
|
||||
*/
|
||||
var $tree_type = 'comment';
|
||||
|
||||
/**
|
||||
* @see Walker::$db_fields
|
||||
* @since unknown
|
||||
* @since 2.7.0
|
||||
* @var array
|
||||
*/
|
||||
var $db_fields = array ('parent' => 'comment_parent', 'id' => 'comment_ID');
|
||||
|
||||
/**
|
||||
* @see Walker::start_lvl()
|
||||
* @since unknown
|
||||
* @since 2.7.0
|
||||
*
|
||||
* @param string $output Passed by reference. Used to append additional content.
|
||||
* @param int $depth Depth of comment.
|
||||
@@ -1255,7 +1255,7 @@ class Walker_Comment extends Walker {
|
||||
|
||||
/**
|
||||
* @see Walker::end_lvl()
|
||||
* @since unknown
|
||||
* @since 2.7.0
|
||||
*
|
||||
* @param string $output Passed by reference. Used to append additional content.
|
||||
* @param int $depth Depth of comment.
|
||||
@@ -1318,7 +1318,7 @@ class Walker_Comment extends Walker {
|
||||
|
||||
/**
|
||||
* @see Walker::start_el()
|
||||
* @since unknown
|
||||
* @since 2.7.0
|
||||
*
|
||||
* @param string $output Passed by reference. Used to append additional content.
|
||||
* @param object $comment Comment data object.
|
||||
@@ -1378,7 +1378,7 @@ class Walker_Comment extends Walker {
|
||||
|
||||
/**
|
||||
* @see Walker::end_el()
|
||||
* @since unknown
|
||||
* @since 2.7.0
|
||||
*
|
||||
* @param string $output Passed by reference. Used to append additional content.
|
||||
* @param object $comment
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* @since unknown
|
||||
* @since MU
|
||||
* @deprecated 3.0.0
|
||||
* @deprecated Use wp_generate_password()
|
||||
* @see wp_generate_password()
|
||||
|
||||
@@ -570,7 +570,7 @@ class WP_Rewrite {
|
||||
/**
|
||||
* Endpoints permalinks
|
||||
*
|
||||
* @since unknown
|
||||
* @since 2.1.0
|
||||
* @access private
|
||||
* @var array
|
||||
*/
|
||||
@@ -1002,7 +1002,7 @@ class WP_Rewrite {
|
||||
/**
|
||||
* Retrieve extra permalink structure by name.
|
||||
*
|
||||
* @since unknown
|
||||
* @since 2.5.0
|
||||
* @access public
|
||||
*
|
||||
* @param string $name Permalink structure name.
|
||||
@@ -1847,7 +1847,7 @@ class WP_Rewrite {
|
||||
* These are added along with the extra rewrite rules that are merged to the
|
||||
* top.
|
||||
*
|
||||
* @since unknown
|
||||
* @since 2.5.0
|
||||
* @access public
|
||||
*
|
||||
* @param string $name Name for permalink structure.
|
||||
|
||||
+6
-6
@@ -394,7 +394,7 @@ if ( !function_exists('fetch_rss') ) :
|
||||
/**
|
||||
* Build Magpie object based on RSS from URL.
|
||||
*
|
||||
* @since unknown
|
||||
* @since 1.5.0
|
||||
* @package External
|
||||
* @subpackage MagpieRSS
|
||||
*
|
||||
@@ -532,7 +532,7 @@ endif;
|
||||
/**
|
||||
* Retrieve URL headers and content using WP HTTP Request API.
|
||||
*
|
||||
* @since unknown
|
||||
* @since 1.5.0
|
||||
* @package External
|
||||
* @subpackage MagpieRSS
|
||||
*
|
||||
@@ -576,7 +576,7 @@ function _fetch_remote_file($url, $headers = "" ) {
|
||||
/**
|
||||
* Retrieve
|
||||
*
|
||||
* @since unknown
|
||||
* @since 1.5.0
|
||||
* @package External
|
||||
* @subpackage MagpieRSS
|
||||
*
|
||||
@@ -626,7 +626,7 @@ function _response_to_rss ($resp) {
|
||||
/**
|
||||
* Set up constants with default values, unless user overrides.
|
||||
*
|
||||
* @since unknown
|
||||
* @since 1.5.0
|
||||
* @package External
|
||||
* @subpackage MagpieRSS
|
||||
*/
|
||||
@@ -871,7 +871,7 @@ if ( !function_exists('wp_rss') ) :
|
||||
/**
|
||||
* Display all RSS items in a HTML ordered list.
|
||||
*
|
||||
* @since unknown
|
||||
* @since 1.5.0
|
||||
* @package External
|
||||
* @subpackage MagpieRSS
|
||||
*
|
||||
@@ -911,7 +911,7 @@ if ( !function_exists('get_rss') ) :
|
||||
* to display. You can't display all of them like you can with wp_rss()
|
||||
* function.
|
||||
*
|
||||
* @since unknown
|
||||
* @since 1.5.0
|
||||
* @package External
|
||||
* @subpackage MagpieRSS
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user