Making WordPress.org

Changeset 3604


Ignore:
Timestamp:
06/29/2016 08:36:09 AM (10 years ago)
Author:
nacin
Message:

Trac Components: Quick fix to a data type change in the shift from MySQL to SQLite.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/trac-notifications/trac-components.php

    r3172 r3604  
    503503                echo '<ul class="ticket-list">';
    504504                foreach ( $tickets as $ticket ) {
     505                        $ticket = (object) $ticket;
    505506                        echo '<li><a href="https://core.trac.wordpress.org/ticket/' . $ticket->id . '">#' . $ticket->id . '</a> &nbsp;' . esc_html( $ticket->summary );
    506507                        if ( ! empty( $ticket->focuses ) ) {
Note: See TracChangeset for help on using the changeset viewer.