Making WordPress.org

Changeset 3181


Ignore:
Timestamp:
05/19/2016 06:56:12 AM (10 years ago)
Author:
dd32
Message:

Plugin Directory: Fix shortcodes containing links by not running make_clickable() on the content, this breaks standalone links, so needs to be fixed.

See #1724

File:
1 edited

Legend:

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

    r3180 r3181  
    317317                );
    318318
    319                 $text = balanceTags( $text );
    320                 $text = make_clickable( $text );
     319                $text = force_balance_tags( $text );
     320                // TODO: make_clickable() will act inside shortcodes.
     321                //$text = make_clickable( $text );
    321322
    322323                $text = wp_kses( $text, $allowed );
Note: See TracChangeset for help on using the changeset viewer.