Changeset 13929
- Timestamp:
- 07/26/2024 04:37:36 AM (7 weeks ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/metabox/class-release-confirmation.php
r10224 r13929 31 31 32 32 if ( $post->release_confirmation ) { 33 Release_Confirmation_Shortcode::single_plugin _row( $post, $include_header = false );33 Release_Confirmation_Shortcode::single_plugin( $post, $include_header = false ); 34 34 } 35 35 } -
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-release-confirmation.php
r13248 r13929 91 91 $not_enabled = []; 92 92 foreach ( $plugins as $plugin ) { 93 self::single_plugin _row( $plugin );93 self::single_plugin( $plugin ); 94 94 95 95 if ( ! $plugin->release_confirmation ) { … … 116 116 } 117 117 118 static function single_plugin _row( $plugin, $include_header = true ) {118 static function single_plugin( $plugin, $include_header = true ) { 119 119 $releases = Plugin_Directory::get_releases( $plugin ); 120 120
Note: See TracChangeset
for help on using the changeset viewer.