Changeset 32643 for trunk/src/wp-admin/includes/schema.php
- Timestamp:
- 05/29/2015 02:05:26 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/schema.php
r32642 r32643 9 9 */ 10 10 11 // Declare these as global in case schema.php is included from a function. 11 /** 12 * Declare these as global in case schema.php is included from a function. 13 * 14 * @global wpdb $wpdb 15 * @global array $wp_queries 16 * @global string $charset_collate 17 */ 12 18 global $wpdb, $wp_queries, $charset_collate; 13 19 14 20 /** 15 21 * The database character collate. 16 * @var string17 * @global string18 * @name $charset_collate19 22 */ 20 23 $charset_collate = $wpdb->get_charset_collate(); … … 24 27 * 25 28 * @since 3.3.0 29 * 30 * @global wpdb $wpdb 26 31 * 27 32 * @param string $scope Optional. The tables for which to retrieve SQL. Can be all, global, ms_global, or blog tables. Defaults to all. … … 864 869 * @since 3.0.0 865 870 * 871 * @global wpdb $wpdb 872 * @global object $current_site 873 * @global int $wp_db_version 874 * @global WP_Rewrite $wp_rewrite 875 * 866 876 * @param int $network_id ID of network to populate. 867 877 * @return bool|WP_Error True on success, or WP_Error on warning (with the install otherwise successful,
Note: See TracChangeset
for help on using the changeset viewer.