Changeset 47818
- Timestamp:
- 05/18/2020 12:53:34 PM (4 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r47816 r47818 3574 3574 $theme->num_ratings = number_format_i18n( $theme->num_ratings ); 3575 3575 $theme->preview_url = set_url_scheme( $theme->preview_url ); 3576 3577 3576 $theme->compatible_wp = is_wp_version_compatible( $theme->requires ); 3577 $theme->compatible_php = is_php_version_compatible( $theme->requires_php ); 3578 3578 } 3579 3579 -
trunk/src/wp-admin/includes/theme.php
r47816 r47818 693 693 'tags' => $theme->display( 'Tags' ), 694 694 'version' => $theme->get( 'Version' ), 695 696 695 'compatibleWP' => is_wp_version_compatible( $theme->get( 'RequiresWP' ) ), 696 'compatiblePHP' => is_php_version_compatible( $theme->get( 'RequiresPHP' ) ), 697 697 'parent' => $parent, 698 698 'active' => $slug === $current_theme,
Note: See TracChangeset
for help on using the changeset viewer.