Changeset 38457 for trunk/src/wp-includes/cache.php
- Timestamp:
- 08/31/2016 04:55:01 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/cache.php
r38335 r38457 730 730 * 731 731 * @since 2.0.8 732 *733 * @global int $blog_id Global blog ID.734 732 */ 735 733 public function __construct() { 736 global $blog_id;737 738 734 $this->multisite = is_multisite(); 739 $this->blog_prefix = $this->multisite ? $blog_id. ':' : '';735 $this->blog_prefix = $this->multisite ? get_current_blog_id() . ':' : ''; 740 736 741 737
Note: See TracChangeset
for help on using the changeset viewer.