Making WordPress.org

Changeset 13179

Timestamp:
02/07/2024 02:54:55 AM (6 months ago)
Author:
tellyworth
Message:

Plugin Directory: Add Plugin Check buttons on author pending page.

See #7405.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/shortcodes/class-upload.php

    r13116 r13179  
    11<?php
    22namespace WordPressdotorg\Plugin_Directory\Shortcodes;
     3
    34
    45class Upload {
     
    195196                    </p>
    196197
     198
     199
     200
     201
    197202                    <ul>
    198203                    <?php
     
    280285
    281286                            echo '<strong>' . __( 'Submitted files:', 'wporg' ) . '</strong><ol>';
    282                             foreach ( $attached_media as $upload ) {
     287                            foreach ( $attached_media as $upload ) {
    283288                                echo '<li><ul>';
    284289                                echo '<li><code>' . esc_html( $upload->submitted_name ) . '</code></li>';
    285290                                echo '<li>' . sprintf( __( 'Version: %s', 'wporg-plugins' ), '<code>' . esc_html( $upload->version ) . '</code>' ) . '</li>';
    286291                                echo '<li>' . sprintf( __( 'Upload Date: %s', 'wporg-plugins' ), date_i18n( get_option( 'date_format' ), strtotime( $upload->post_date ) ) ) . '</li>';
     292
     293
     294
     295
     296
     297
    287298                                echo '</ul></li>';
    288299                            }
Note: See TracChangeset for help on using the changeset viewer.