Skip to content

Commit cb088b0

Browse files
author
Stefan van den Dungen Gronovius
committed
Release 0.6.9
1 parent 1b11873 commit cb088b0

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

column-shortcodes.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/*
44
Plugin Name: Column Shortcodes
5-
Version: 0.6.8
5+
Version: 0.6.9
66
Description: Adds shortcodes to easily create columns in your posts or pages
77
Author: Codepress
88
Author URI: http://www.codepresshq.com/
@@ -27,7 +27,7 @@
2727
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2828
*/
2929

30-
define( 'CPSH_VERSION', '0.6.8' );
30+
define( 'CPSH_VERSION', '0.6.9' );
3131
define( 'CPSH_URL', plugins_url( '', __FILE__ ) );
3232
define( 'CPSH_TEXTDOMAIN', 'column-shortcodes' );
3333

@@ -184,12 +184,10 @@ function columns( $atts, $content = null, $name = '' ) {
184184
}
185185

186186
// wraps the content in an extra div with padding applied
187-
$content = '<div style="' . esc_attr( $padding ) . '">' . wpautop( $content ) . '</div>';
188-
}
189-
else {
190-
$content = wpautop( $content );
187+
$content = '<div style="' . esc_attr( $padding ) . '">' . $content . '</div>';
191188
}
192189

190+
193191
// last class
194192
$pos = strpos( $name, '_last' );
195193

readme.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,9 @@ You will find a .po file in the languages folder which you can use. You can send
259259

260260
== Changelog ==
261261

262+
= 0.6.9 =
263+
* [Fixed] Rollback of the auto paragraphs. Too much conflicts with other shortcodes
264+
262265
= 0.6.8 =
263266
* [Fixed] use wpautop() to wrap content in paragraphs when needed
264267

0 commit comments

Comments
 (0)