~ubuntu-branches/debian/jessie/wordpress/jessie

« back to all changes in this revision

Viewing changes to wp-admin/includes/schema.php

  • Committer: Package Import Robot
  • Author(s): Craig Small
  • Date: 2014-04-17 20:56:19 UTC
  • mfrom: (1.2.35)
  • Revision ID: package-import@ubuntu.com-20140417205619-nurbet6eho4yvwfv
Tags: 3.9+dfsg-1
* New upstream release
* 3.9 seems to handle different locations for plugins so the
  plugin directory handling patches have been cut back.

Show diffs side-by-side

added added

removed removed

Lines of Context:
392
392
        'time_format' => __('g:i a'),
393
393
        /* translators: links last updated date format, see http://php.net/date */
394
394
        'links_updated_date_format' => __('F j, Y g:i a'),
395
 
        'links_recently_updated_prepend' => '<em>',
396
 
        'links_recently_updated_append' => '</em>',
397
 
        'links_recently_updated_time' => 120,
398
395
        'comment_moderation' => 0,
399
396
        'moderation_notify' => 1,
400
397
        'permalink_structure' => '',
537
534
                'links_rating_ignore_zero', 'links_rating_single_image', 'links_rating_image0', 'links_rating_image1',
538
535
                'links_rating_image2', 'links_rating_image3', 'links_rating_image4', 'links_rating_image5',
539
536
                'links_rating_image6', 'links_rating_image7', 'links_rating_image8', 'links_rating_image9',
 
537
                'links_recently_updated_time', 'links_recently_updated_prepend', 'links_recently_updated_append',
540
538
                'weblogs_cacheminutes', 'comment_allowed_tags', 'search_engine_friendly_urls', 'default_geourl_lat',
541
539
                'default_geourl_lon', 'use_default_geourl', 'weblogs_xml_url', 'new_users_can_blog', '_wpnonce',
542
540
                '_wp_http_referer', 'Update', 'action', 'rich_editing', 'autosave_interval', 'deactivated_plugins',
889
887
                $wpdb->insert( $wpdb->site, array( 'domain' => $domain, 'path' => $path, 'id' => $network_id ) );
890
888
        }
891
889
 
 
890
        wp_cache_delete( 'networks_have_paths', 'site-options' );
 
891
 
892
892
        if ( !is_multisite() ) {
893
893
                $site_admins = array( $site_user->user_login );
894
894
                $users = get_users( array( 'fields' => array( 'ID', 'user_login' ) ) );