Changeset 3386
- Timestamp:
- 12/31/05 22:34:58 (3 years ago)
- Files:
-
- trunk/wp-includes/cache.php (modified) (1 diff)
- trunk/wp-includes/functions-post.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/cache.php
r3330 r3386 54 54 var $cache_dir; 55 55 var $cache_enabled = false; 56 var $expiration_time = 86400;56 var $expiration_time = 900; 57 57 var $flock_filename = 'wp_object_cache.lock'; 58 58 var $cache = array (); trunk/wp-includes/functions-post.php
r3384 r3386 122 122 if ($update) { 123 123 $wpdb->query( 124 "UPDATE $wpdb->posts SET124 "UPDATE IGNORE $wpdb->posts SET 125 125 post_author = '$post_author', 126 126 post_date = '$post_date', … … 144 144 } else { 145 145 $wpdb->query( 146 "INSERT I NTO $wpdb->posts146 "INSERT IGNORE INTO $wpdb->posts 147 147 (post_author, post_date, post_date_gmt, post_content, post_content_filtered, post_title, post_excerpt, post_status, comment_status, ping_status, post_password, post_name, to_ping, pinged, post_modified, post_modified_gmt, post_parent, menu_order, post_mime_type) 148 148 VALUES
