Version Description
- Fix: HTTP 500 error because of syntax error in import module.
Download this release
Release Info
Developer | vaakash |
Plugin | Shortcoder |
Version | 4.1.1 |
Comparing to | |
See all releases |
Code changes from version 4.1 to 4.1.1
- includes/import.php +1 -1
- readme.txt +4 -1
- shortcoder.php +2 -2
includes/import.php
CHANGED
@@ -72,7 +72,7 @@ class Shortcoder_Import{
|
|
72 |
}
|
73 |
|
74 |
}else{
|
75 |
-
self
|
76 |
}
|
77 |
|
78 |
}
|
72 |
}
|
73 |
|
74 |
}else{
|
75 |
+
self::print_notice( __( 'Failed to decode JSON in imported data.', 'shortcoder' ) );
|
76 |
}
|
77 |
|
78 |
}
|
readme.txt
CHANGED
@@ -7,7 +7,7 @@ Donate link: https://goo.gl/qMF3iE
|
|
7 |
License: GPLv2 or later
|
8 |
Requires at least: 3.3
|
9 |
Tested up to: 4.8.1
|
10 |
-
Stable tag: 4.1
|
11 |
|
12 |
Create custom "Shortcodes" easily for HTML, JavaScript snippets and use the shortcodes within posts, pages & widgets.
|
13 |
|
@@ -91,6 +91,9 @@ Note: When you disable a shortcode, the shortcode will not be executed in the pa
|
|
91 |
|
92 |
== Changelog ==
|
93 |
|
|
|
|
|
|
|
94 |
= 4.1 =
|
95 |
* New: Import/export feature for shortcodes.
|
96 |
* Fix: Visual editor is now disabled by default.
|
7 |
License: GPLv2 or later
|
8 |
Requires at least: 3.3
|
9 |
Tested up to: 4.8.1
|
10 |
+
Stable tag: 4.1.1
|
11 |
|
12 |
Create custom "Shortcodes" easily for HTML, JavaScript snippets and use the shortcodes within posts, pages & widgets.
|
13 |
|
91 |
|
92 |
== Changelog ==
|
93 |
|
94 |
+
= 4.1.1 =
|
95 |
+
* Fix: HTTP 500 error because of syntax error in import module.
|
96 |
+
|
97 |
= 4.1 =
|
98 |
* New: Import/export feature for shortcodes.
|
99 |
* Fix: Visual editor is now disabled by default.
|
shortcoder.php
CHANGED
@@ -4,11 +4,11 @@ Plugin Name: Shortcoder
|
|
4 |
Plugin URI: https://www.aakashweb.com/
|
5 |
Description: Shortcoder is a plugin which allows to create a custom shortcode and store HTML, Javascript and other snippets in it. So if that shortcode is used in any post or pages, then the code stored in the shortcode get executed in that place. You can create a shortcode for Youtube videos, adsense ads, buttons and more.
|
6 |
Author: Aakash Chakravarthy
|
7 |
-
Version: 4.1
|
8 |
Author URI: https://www.aakashweb.com/
|
9 |
*/
|
10 |
|
11 |
-
define( 'SC_VERSION', '4.1');
|
12 |
define( 'SC_PATH', plugin_dir_path( __FILE__ ) ); // All have trailing slash
|
13 |
define( 'SC_URL', plugin_dir_url( __FILE__ ) );
|
14 |
define( 'SC_ADMIN_URL', trailingslashit( plugin_dir_url( __FILE__ ) . 'admin' ) );
|
4 |
Plugin URI: https://www.aakashweb.com/
|
5 |
Description: Shortcoder is a plugin which allows to create a custom shortcode and store HTML, Javascript and other snippets in it. So if that shortcode is used in any post or pages, then the code stored in the shortcode get executed in that place. You can create a shortcode for Youtube videos, adsense ads, buttons and more.
|
6 |
Author: Aakash Chakravarthy
|
7 |
+
Version: 4.1.1
|
8 |
Author URI: https://www.aakashweb.com/
|
9 |
*/
|
10 |
|
11 |
+
define( 'SC_VERSION', '4.1.1' );
|
12 |
define( 'SC_PATH', plugin_dir_path( __FILE__ ) ); // All have trailing slash
|
13 |
define( 'SC_URL', plugin_dir_url( __FILE__ ) );
|
14 |
define( 'SC_ADMIN_URL', trailingslashit( plugin_dir_url( __FILE__ ) . 'admin' ) );
|