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/labels/plugin_shortcode.php +3 -2 4.43.7 View file →
@@ -11,9 +11,10 @@
11 11 ), $params));
12 12 $out = '';
13 13 $content = str_replace("<br />", '', $content);
14 14 $content = str_replace("<br />\n", '', $content);
15 - $out = '<span class="label ' . $type . ' ' . $class . EBS_CONTAINER_CLASS.'">' . do_shortcode($content) . '</span>';
15 + $out = '<span class="label ' . $type . ' ' . $class . '">' . do_shortcode($content) . '</span>';
16 16 return $out;
17 17 }
18 18
19 -ebs_backward_compatibility_callback('label', 'osc_theme_labels');
19 +add_shortcode('label', 'osc_theme_labels');
20 +