Changeset 4144 for trunk/wp-includes/post.php
- Timestamp:
- 08/30/2006 09:46:31 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/post.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post.php
r4133 r4144 561 561 $comment_status = 'closed'; 562 562 else 563 $comment_status = get_ settings('default_comment_status');563 $comment_status = get_option('default_comment_status'); 564 564 } 565 565 if ( empty($ping_status) ) 566 $ping_status = get_ settings('default_ping_status');566 $ping_status = get_option('default_ping_status'); 567 567 if ( empty($post_pingback) ) 568 568 $post_pingback = get_option('default_pingback_flag'); … … 1200 1200 $comment_status = 'closed'; 1201 1201 else 1202 $comment_status = get_ settings('default_comment_status');1202 $comment_status = get_option('default_comment_status'); 1203 1203 } 1204 1204 if ( empty($ping_status) ) 1205 $ping_status = get_ settings('default_ping_status');1205 $ping_status = get_option('default_ping_status'); 1206 1206 if ( empty($post_pingback) ) 1207 1207 $post_pingback = get_option('default_pingback_flag');
Note: See TracChangeset
for help on using the changeset viewer.