Version Description
- Fixed metabox bug from last update
Download this release
Release Info
Developer | metaphorcreations |
Plugin | Ditty News Ticker |
Version | 1.4.13 |
Comparing to | |
See all releases |
Code changes from version 1.4.12 to 1.4.13
- ditty-news-ticker.php +3 -3
- includes/admin/meta-boxes.php +2 -2
- readme.txt +4 -1
ditty-news-ticker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Ditty News Ticker
|
4 |
Plugin URI: http://dittynewsticker.com/
|
5 |
Description: Ditty News Ticker is a multi-functional data display plugin
|
6 |
-
Version: 1.4.
|
7 |
Author: Metaphor Creations
|
8 |
Author URI: http://www.metaphorcreations.com
|
9 |
License: GPL2
|
@@ -29,10 +29,10 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
29 |
|
30 |
|
31 |
/* --------------------------------------------------------- */
|
32 |
-
/* !Define constants - 1.4.
|
33 |
/* --------------------------------------------------------- */
|
34 |
|
35 |
-
define ( 'MTPHR_DNT_VERSION', '1.4.
|
36 |
define ( 'MTPHR_DNT_DIR', plugin_dir_path(__FILE__) );
|
37 |
define ( 'MTPHR_DNT_URL', plugins_url().'/ditty-news-ticker' );
|
38 |
|
3 |
Plugin Name: Ditty News Ticker
|
4 |
Plugin URI: http://dittynewsticker.com/
|
5 |
Description: Ditty News Ticker is a multi-functional data display plugin
|
6 |
+
Version: 1.4.13
|
7 |
Author: Metaphor Creations
|
8 |
Author URI: http://www.metaphorcreations.com
|
9 |
License: GPL2
|
29 |
|
30 |
|
31 |
/* --------------------------------------------------------- */
|
32 |
+
/* !Define constants - 1.4.13 */
|
33 |
/* --------------------------------------------------------- */
|
34 |
|
35 |
+
define ( 'MTPHR_DNT_VERSION', '1.4.13' );
|
36 |
define ( 'MTPHR_DNT_DIR', plugin_dir_path(__FILE__) );
|
37 |
define ( 'MTPHR_DNT_URL', plugins_url().'/ditty-news-ticker' );
|
38 |
|
includes/admin/meta-boxes.php
CHANGED
@@ -795,7 +795,7 @@ function mtphr_dnt_global_settings_render_metabox() {
|
|
795 |
|
796 |
|
797 |
/* --------------------------------------------------------- */
|
798 |
-
/* !Save the custom meta - 1.4.
|
799 |
/* --------------------------------------------------------- */
|
800 |
|
801 |
function mtphr_dnt_metabox_save( $post_id ) {
|
@@ -860,7 +860,7 @@ function mtphr_dnt_metabox_save( $post_id ) {
|
|
860 |
$sanitized_ticks[] = array(
|
861 |
'type' => $tick['type'],
|
862 |
'offset' => intval($tick['offset']),
|
863 |
-
'all' => $tick['all']
|
864 |
);
|
865 |
}
|
866 |
}
|
795 |
|
796 |
|
797 |
/* --------------------------------------------------------- */
|
798 |
+
/* !Save the custom meta - 1.4.13 */
|
799 |
/* --------------------------------------------------------- */
|
800 |
|
801 |
function mtphr_dnt_metabox_save( $post_id ) {
|
860 |
$sanitized_ticks[] = array(
|
861 |
'type' => $tick['type'],
|
862 |
'offset' => intval($tick['offset']),
|
863 |
+
'all' => isset($tick['all']) ? $tick['all'] : ''
|
864 |
);
|
865 |
}
|
866 |
}
|
readme.txt
CHANGED
@@ -54,6 +54,9 @@ Each individual Ticker post has multiple settings to customize.
|
|
54 |
|
55 |
== Changelog ==
|
56 |
|
|
|
|
|
|
|
57 |
= 1.4.12 =
|
58 |
* Modified jQuery script to allow hidden tickers to function correctly after they become visible on screen
|
59 |
* Added the ability to add all ticks from a selected type to the mixed ticker
|
@@ -252,4 +255,4 @@ Each individual Ticker post has multiple settings to customize.
|
|
252 |
|
253 |
== Upgrade Notice ==
|
254 |
|
255 |
-
|
54 |
|
55 |
== Changelog ==
|
56 |
|
57 |
+
= 1.4.13 =
|
58 |
+
* Fixed metabox bug from last update
|
59 |
+
|
60 |
= 1.4.12 =
|
61 |
* Modified jQuery script to allow hidden tickers to function correctly after they become visible on screen
|
62 |
* Added the ability to add all ticks from a selected type to the mixed ticker
|
255 |
|
256 |
== Upgrade Notice ==
|
257 |
|
258 |
+
Fixed metabox bug from last update.
|