Changeset 56499
- Timestamp:
- 08/31/2023 02:43:36 PM (15 months ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-privacy-policy-content.php
r56174 r56499 131 131 * 132 132 * @since 4.9.6 133 *134 * @global WP_Post $post Global post object.135 133 */ 136 134 public static function policy_text_changed_notice() { 137 global $post;138 139 135 $screen = get_current_screen()->id; 140 136 -
trunk/src/wp-admin/includes/ms.php
r56176 r56499 59 59 * @since 5.1.0 Use wp_delete_site() internally to delete the site row from the database. 60 60 * 61 * @global wpdb $wpdb WordPress database abstraction object.62 *63 61 * @param int $blog_id Site ID. 64 62 * @param bool $drop True if site's database tables should be dropped. Default false. 65 63 */ 66 64 function wpmu_delete_blog( $blog_id, $drop = false ) { 67 global $wpdb;68 69 65 $blog_id = (int) $blog_id; 70 66 -
trunk/src/wp-admin/includes/upgrade.php
r56270 r56499 626 626 * @global int $wp_current_db_version The old (current) database version. 627 627 * @global int $wp_db_version The new database version. 628 * @global wpdb $wpdb WordPress database abstraction object.629 628 */ 630 629 function wp_upgrade() { 631 global $wp_current_db_version, $wp_db_version , $wpdb;630 global $wp_current_db_version, $wp_db_version; 632 631 633 632 $wp_current_db_version = __get_option( 'db_version' );
Note: See TracChangeset
for help on using the changeset viewer.