Skip to content

Commit

Permalink
bs_media_body() : Fixed wrong media-body class name
Browse files Browse the repository at this point in the history
  • Loading branch information
nsorosac committed Oct 21, 2013
1 parent c1d3f9a commit 4c0564c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap-shortcodes.php
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ function bs_media_body( $atts, $content = null ) {
'title' => false,
);
extract( shortcode_atts( $defaults, $atts ) );
$return .= '<div class="meda-body">';
$return .= '<div class="media-body">';
$return .= ($title) ? '<h4 class="media-heading">' . $title . '</h4>' : '';
$return .= $content . '</div>';
return $return;
Expand Down

0 comments on commit 4c0564c

Please sign in to comment.