summaryrefslogtreecommitdiffstats
path: root/wp-includes
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-02-01 21:31:56 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-02-01 21:31:56 +0000
commit4c4e0fc82e70e810472721ad23aac64ba2c5b6e1 (patch)
tree13d4bbf315950f2839d9cff3abcb6ac613730b80 /wp-includes
parent56ebeff8a4a3c1c954ed56bfa2db8fbebd0f8593 (diff)
downloadwordpress-mu-4c4e0fc82e70e810472721ad23aac64ba2c5b6e1.tar.gz
wordpress-mu-4c4e0fc82e70e810472721ad23aac64ba2c5b6e1.tar.xz
wordpress-mu-4c4e0fc82e70e810472721ad23aac64ba2c5b6e1.zip
Fixed typos, too many diffputs
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@878 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes')
-rw-r--r--wp-includes/cache.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/wp-includes/cache.php b/wp-includes/cache.php
index daaeaeb..2232e15 100644
--- a/wp-includes/cache.php
+++ b/wp-includes/cache.php
@@ -215,6 +215,8 @@ class WP_Object_Cache {
foreach ($dogs as $catt) {
$this->cache['category'][$catt->cat_ID] = $catt;
$this->cache[$this->key( $catt->cat_ID, 'category' )] = $catt;
+ }
+ }
} else
if ('options' == $group) {
$wpdb->hide_errors();
@@ -228,6 +230,7 @@ class WP_Object_Cache {
foreach ($options as $option) {
$this->cache['options'][$option->option_name] = $option->option_value;
+ $this->cache[$this->key( $option->option_name, 'options' )] = $option->option_value;
}
}
}