Changeset 12533 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/api/routes/class-plugin.php
- Timestamp:
- 04/12/2023 05:24:19 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/api/routes/class-plugin.php
r12157 r12533 113 113 } 114 114 115 $result['requires'] = get_post_meta( $post_id, 'requires', true ) ?: false; 116 $result['tested'] = get_post_meta( $post_id, 'tested', true ) ?: false; 117 $result['requires_php'] = get_post_meta( $post_id, 'requires_php', true ) ?: false; 118 $result['compatibility'] = array(); 115 $result['requires'] = get_post_meta( $post_id, 'requires', true ) ?: false; 116 $result['tested'] = get_post_meta( $post_id, 'tested', true ) ?: false; 117 $result['requires_php'] = get_post_meta( $post_id, 'requires_php', true ) ?: false; 118 $result['requires_plugins'] = get_post_meta( $post_id, 'requires_plugins', true ) ?: []; 119 $result['compatibility'] = array(); 119 120 120 121 if ( class_exists( '\WPORG_Ratings' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.