Changeset 1235 for trunk/wp-blog-header.php
- Timestamp:
- 05/05/2004 09:29:23 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-blog-header.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-blog-header.php
r1227 r1235 500 500 501 501 // Force subkeys to be array type: 502 if (!is _array($post_meta_cache[$mpid]))502 if (!isset($post_meta_cache[$mpid]) || !is_array($post_meta_cache[$mpid])) 503 503 $post_meta_cache[$mpid] = array(); 504 if (!is _array($post_meta_cache[$mpid][$mkey]))505 $post_meta_cache[$mpid][ $mkey] = array();504 if (!isset($post_meta_cache[$mpid]["$mkey"]) || !is_array($post_meta_cache[$mpid]["$mkey"])) 505 $post_meta_cache[$mpid]["$mkey"] = array(); 506 506 507 507 // Add a value to the current pid/key:
Note: See TracChangeset
for help on using the changeset viewer.