Make WordPress Core


Ignore:
Timestamp:
09/14/2012 08:26:20 PM (12 years ago)
Author:
nacin
Message:

"[ ] Discourage search engines from indexing this site". fixes #16416.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/formatting.php

    r21850 r21851  
    27982798            break;
    27992799
     2800        case 'blog_public':
     2801            // This is the value if the settings checkbox is not checked on POST. Don't rely on this.
     2802            if ( null === $value )
     2803                $value = 1;
     2804            else
     2805                $value = intval( $value );
     2806            break;
     2807
    28002808        case 'date_format':
    28012809        case 'time_format':
Note: See TracChangeset for help on using the changeset viewer.