Make WordPress Core

Changeset 22357


Ignore:
Timestamp:
11/02/2012 04:13:53 PM (14 years ago)
Author:
nacin
Message:

clean_post_cache() no longer calls itself recursively. see #11399.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/post.php

    r22291 r22357  
    430430         *
    431431         * @var int
    432          */     
     432         */
    433433        public $post_author = 0;
    434434
     
    436436         *
    437437         * @var string
    438          */     
     438         */
    439439        public $post_date = '0000-00-00 00:00:00';
    440440
     
    442442         *
    443443         * @var string
    444          */             
     444         */
    445445        public $post_date_gmt = '0000-00-00 00:00:00';
    446446
     
    448448         *
    449449         * @var string
    450          */             
     450         */
    451451        public $post_content = '';
    452452
     
    454454         *
    455455         * @var string
    456          */             
     456         */
    457457        public $post_title = '';
    458458
     
    460460         *
    461461         * @var string
    462          */             
     462         */
    463463        public $post_excerpt = '';
    464464
     
    466466         *
    467467         * @var string
    468          */             
     468         */
    469469        public $post_status = 'publish';
    470470
     
    472472         *
    473473         * @var string
    474          */             
     474         */
    475475        public $comment_status = 'open';
    476476
     
    478478         *
    479479         * @var string
    480          */             
     480         */
    481481        public $ping_status = 'open';
    482482
     
    484484         *
    485485         * @var string
    486          */             
     486         */
    487487        public $post_password = '';
    488488
     
    490490         *
    491491         * @var string
    492          */             
     492         */
    493493        public $post_name = '';
    494494
     
    496496         *
    497497         * @var string
    498          */             
     498         */
    499499        public $to_ping = '';
    500500
     
    502502         *
    503503         * @var string
    504          */             
     504         */
    505505        public $pinged = '';
    506506
     
    508508         *
    509509         * @var string
    510          */             
     510         */
    511511        public $post_modified = '0000-00-00 00:00:00';
    512512
     
    514514         *
    515515         * @var string
    516          */             
     516         */
    517517        public $post_modified_gmt = '0000-00-00 00:00:00';
    518518
     
    520520         *
    521521         * @var string
    522          */             
     522         */
    523523        public $post_content_filtered = '';
    524524
     
    526526         *
    527527         * @var int
    528          */             
     528         */
    529529        public $post_parent = 0;
    530530
     
    532532         *
    533533         * @var string
    534          */             
     534         */
    535535        public $guid = '';
    536536
     
    538538         *
    539539         * @var int
    540          */     
     540         */
    541541        public $menu_order = 0;
    542542
     
    544544         *
    545545         * @var string
    546          */     
     546         */
    547547        public $post_type = 'post';
    548548
     
    550550         *
    551551         * @var string
    552          */             
     552         */
    553553        public $post_mime_type = '';
    554554
     
    556556         *
    557557         * @var int
    558          */     
     558         */
    559559        public $comment_count = 0;
    560560
     
    562562         *
    563563         * @var string
    564          */                     
     564         */
    565565        public $filter;
    566566
     
    45884588 * object cache associated with the post ID.
    45894589 *
    4590  * clean_post_cache() will call itself recursively for each child post.
    4591  *
    45924590 * This function not run if $_wp_suspend_cache_invalidation is not empty. See
    45934591 * wp_suspend_cache_invalidation().
Note: See TracChangeset for help on using the changeset viewer.