CSS & JavaScript Toolbox - Version 6.0.7

Version Description

  • Fix: textarea HTML tag break down CJT Block code.
Download this release

Release Info

Developer wipeoutmedia
Plugin Icon 128x128 CSS & JavaScript Toolbox
Version 6.0.7
Comparing to
See all releases

Code changes from version 6.0.6 to 6.0.7

css-js-toolbox.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: CSS & JavaScript Toolbox
4
  Plugin URI: http://css-javascript-toolbox.com/css-javascript-toolbox-free
5
  Description: CJT Plugin for WordPress to easily add custom CSS and JavaScript to individual pages
6
- Version: 6.0.6
7
  Author: Wipeout Media
8
  Author URI: http://css-javascript-toolbox.com/
9
 
3
  Plugin Name: CSS & JavaScript Toolbox
4
  Plugin URI: http://css-javascript-toolbox.com/css-javascript-toolbox-free
5
  Description: CJT Plugin for WordPress to easily add custom CSS and JavaScript to individual pages
6
+ Version: 6.0.7
7
  Author: Wipeout Media
8
  Author URI: http://css-javascript-toolbox.com/
9
 
index.php CHANGED
@@ -1,2 +1,2 @@
1
  <?php
2
- // index.php just to prevent indexing of plugin folder
1
  <?php
2
+ // index.php just to prevent indexing of plugin folder
readme.txt CHANGED
@@ -7,7 +7,7 @@ License: GPLv2 or later
7
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
8
  Requires at least: 3.3
9
  Tested up to: 3.5.1
10
- Stable tag: 6.0.6
11
 
12
  Easily add custom CSS, JavaScript, HTML and PHP code to unique CJT code blocks and assign them wherever you want.
13
 
@@ -123,6 +123,9 @@ Sometimes a bug decides to rear its ugly head and when this happens, this is whe
123
 
124
  == Changelog ==
125
 
 
 
 
126
  = 6.0.6 =
127
  * Fix: Conflict with other Plugins!
128
  * Fix: Javascript exception throwed when dismissing the install/upgrade notice.
7
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
8
  Requires at least: 3.3
9
  Tested up to: 3.5.1
10
+ Stable tag: 6.0.7
11
 
12
  Easily add custom CSS, JavaScript, HTML and PHP code to unique CJT code blocks and assign them wherever you want.
13
 
123
 
124
  == Changelog ==
125
 
126
+ = 6.0.7 =
127
+ * Fix: textarea HTML tag break down CJT Block code.
128
+
129
  = 6.0.6 =
130
  * Fix: Conflict with other Plugins!
131
  * Fix: Javascript exception throwed when dismissing the install/upgrade notice.
views/blocks/block/tmpl/edit.html.tmpl CHANGED
@@ -25,7 +25,7 @@ defined('ABSPATH') or die("Access denied");
25
  <div class="cjcontainer">
26
  <div class="cjcodeblock">
27
  <div class="datablock">
28
- <textarea class="initCode" style="visibility:hidden"><?php echo $this->block->code ;?></textarea>
29
  <div id="editor-<?php echo $this->block->id ?>" class="code-editor">
30
  </div>
31
  </div>
25
  <div class="cjcontainer">
26
  <div class="cjcodeblock">
27
  <div class="datablock">
28
+ <textarea class="initCode" style="visibility:hidden"><?php echo htmlentities($this->block->code) ;?></textarea>
29
  <div id="editor-<?php echo $this->block->id ?>" class="code-editor">
30
  </div>
31
  </div>