Making WordPress.org

Changeset 10721


Ignore:
Timestamp:
02/25/2021 06:45:06 AM (4 years ago)
Author:
dd32
Message:

Theme Direcory: Trac keywords are space separated, no need to include a comma here.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/theme-directory/class-wporg-themes-upload.php

    r10690 r10721  
    850850            $ticket_id = $this->trac->ticket_create( $this->trac_ticket->summary, $this->trac_ticket->description, array(
    851851                'type'      => 'theme',
    852                 'keywords'  => implode( ', ', $this->trac_ticket->keywords ),
     852                'keywords'  => implode( ' ', $this->trac_ticket->keywords ),
    853853                'reporter'  => $this->author->user_login,
    854854                'cc'        => $this->author->user_email,
     
    10231023                'live' === $this->trac_ticket->resolution
    10241024            ) {
    1025                 // Do nothing. The update has been set as live. No nee to let them know it's been uploaded.
     1025                // Do nothing. The update has been set as live. No need to let them know it's been uploaded.
    10261026                // wporg_themes_approve_version() will send a "Congratulations! It's live!" email momentarily.
    10271027                return;
Note: See TracChangeset for help on using the changeset viewer.