MWDelaney / bootstrap-3-shortcodes

WordPress shortcodes for easier use of Bootstrap elements in your content.
https://wordpress.org/plugins/bootstrap-3-shortcodes/
MIT License
377 stars 118 forks source link

Function bs_nav_item, wrong variable name #120

Closed rogerlos closed 9 years ago

rogerlos commented 9 years ago

Line 476 of current file:

$content = ( $dropdown ) ? str_replace( '[dropdown]', '</a>[dropdown]', $content ) : $content . '</a>';

Should be:

$content = ( $atts['dropdown'] ) ? str_replace( '[dropdown]', '</a>[dropdown]', $content ) : $content . '</a>';
MWDelaney commented 9 years ago

Thank you! This is fixed.