PluginProbe
Easy Bootstrap Shortcode / 3.7
Easy Bootstrap Shortcode v3.7
trunk 2.4.0 2.5 3.4 3.5 3.6 3.7 4.0.0 4.4 4.5 4.5.4 5.0.0 5.0.1 5.0.2
← All changes | shortcode/tables/plugin_shortcode.php +2 -2 2.53.7 View file →
@@ -11,10 +11,10 @@
11 11 'responsive' => 'false',
12 12 'class' => ''
13 13 ), $params));
14 14 $content = str_replace("]<br />", ']', $content);
15 - $out = '<table width="' . $width . '" class="table ' . $style . ' '.$class.EBS_CONTAINER_CLASS.'">' . do_shortcode($content) . '</table>';
16 - $out = strtolower($responsive) == 'true' ? '<div class="table-responsive'.EBS_CONTAINER_CLASS.'">' . $out . '</div>' : $out;
15 + $out = '<table width="' . $width . '" class="table ' . $style . ' '.$class.'">' . do_shortcode($content) . '</table>';
16 + $out = strtolower($responsive) == 'true' ? '<div class="table-responsive">' . $out . '</div>' : $out;
17 17 return $out;
18 18 }
19 19
20 20 add_shortcode('table', 'osc_theme_os_table');