Changeset 3885 for trunk/wp-includes/functions.php
- Timestamp:
- 06/17/2006 11:38:45 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r3862 r3885 976 976 977 977 function privacy_ping_filter( $sites ) { 978 if ( get_option('blog_public') )978 if ( '0' != get_option('blog_public') ) 979 979 return $sites; 980 980 else … … 1027 1027 1028 1028 function do_robots() { 1029 if ( '1' != get_option('blog_public') ) { 1029 do_action('do_robots'); 1030 if ( '0' == get_option('blog_public') ) { 1030 1031 echo "User-agent: *\n"; 1031 1032 echo "Disallow: /\n";
Note: See TracChangeset
for help on using the changeset viewer.