Version Description
- WYSIWYG field: Fixed JS error preventing tinymce from initializing
Download this release
Release Info
Developer | elliotcondon |
Plugin | Advanced Custom Fields |
Version | 4.4.10 |
Comparing to | |
See all releases |
Code changes from version 4.4.9 to 4.4.10
- acf.php +2 -2
- core/fields/wysiwyg.php +2 -1
- readme.txt +4 -2
acf.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Advanced Custom Fields
|
4 |
Plugin URI: http://www.advancedcustomfields.com/
|
5 |
Description: Customise WordPress with powerful, professional and intuitive fields
|
6 |
-
Version: 4.4.
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
License: GPL
|
@@ -43,7 +43,7 @@ class acf
|
|
43 |
'path' => apply_filters('acf/helpers/get_path', __FILE__),
|
44 |
'dir' => apply_filters('acf/helpers/get_dir', __FILE__),
|
45 |
'hook' => basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ),
|
46 |
-
'version' => '4.4.
|
47 |
'upgrade_version' => '3.4.1',
|
48 |
'include_3rd_party' => false
|
49 |
);
|
3 |
Plugin Name: Advanced Custom Fields
|
4 |
Plugin URI: http://www.advancedcustomfields.com/
|
5 |
Description: Customise WordPress with powerful, professional and intuitive fields
|
6 |
+
Version: 4.4.10
|
7 |
Author: Elliot Condon
|
8 |
Author URI: http://www.elliotcondon.com/
|
9 |
License: GPL
|
43 |
'path' => apply_filters('acf/helpers/get_path', __FILE__),
|
44 |
'dir' => apply_filters('acf/helpers/get_dir', __FILE__),
|
45 |
'hook' => basename( dirname( __FILE__ ) ) . '/' . basename( __FILE__ ),
|
46 |
+
'version' => '4.4.10',
|
47 |
'upgrade_version' => '3.4.1',
|
48 |
'include_3rd_party' => false
|
49 |
);
|
core/fields/wysiwyg.php
CHANGED
@@ -215,7 +215,8 @@ class acf_field_wysiwyg extends acf_field
|
|
215 |
|
216 |
|
217 |
// vars
|
218 |
-
|
|
|
219 |
$default_editor = 'tinymce';
|
220 |
|
221 |
|
215 |
|
216 |
|
217 |
// vars
|
218 |
+
//$id = uniqid('acf-editor-');
|
219 |
+
$id = 'wysiwyg-' . $field['id'] . '-' . uniqid();
|
220 |
$default_editor = 'tinymce';
|
221 |
|
222 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: elliotcondon
|
|
3 |
Tags: custom, field, custom field, advanced, simple fields, magic fields, more fields, repeater, matrix, post, type, text, textarea, file, image, edit, admin
|
4 |
Requires at least: 3.5.0
|
5 |
Tested up to: 4.7.0
|
6 |
-
Stable tag: 4.4.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -116,8 +116,10 @@ http://support.advancedcustomfields.com/
|
|
116 |
|
117 |
== Changelog ==
|
118 |
|
119 |
-
= 4.4.
|
120 |
* WYSIWYG field: Fixed JS error preventing tinymce from initializing
|
|
|
|
|
121 |
* Image field: Added nicer 'Edit image' view
|
122 |
* File field: Added nicer 'Edit file' view
|
123 |
|
3 |
Tags: custom, field, custom field, advanced, simple fields, magic fields, more fields, repeater, matrix, post, type, text, textarea, file, image, edit, admin
|
4 |
Requires at least: 3.5.0
|
5 |
Tested up to: 4.7.0
|
6 |
+
Stable tag: 4.4.10
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
116 |
|
117 |
== Changelog ==
|
118 |
|
119 |
+
= 4.4.10 =
|
120 |
* WYSIWYG field: Fixed JS error preventing tinymce from initializing
|
121 |
+
|
122 |
+
= 4.4.9 =
|
123 |
* Image field: Added nicer 'Edit image' view
|
124 |
* File field: Added nicer 'Edit file' view
|
125 |
|