Making WordPress.org


Ignore:
Timestamp:
09/07/2022 12:08:49 AM (2 years ago)
Author:
dufresnesteven
Message:

wporg-developer: Fix broken page content due to missing closing tag.

Props dingo_d, iandunn.
Fixes #6471.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-developer/inc/formatting.php

    r12054 r12055  
    600600                    $new_text .= "<code>{$name}</code>";
    601601                }
    602                 $new_text .= "<span class='type'>{$type}</span><div class='desc'>{$description}</div>";
     602                $new_text .= "<span class='type'>{$type}</span><div class='desc'>{$description}";
    603603                if ( ! $skip_closing_li ) {
    604                     $new_text .= '</li>';
     604                    $new_text .= '</div></li>';
    605605                }
    606606                $new_text .= "\n";
Note: See TracChangeset for help on using the changeset viewer.