Ditty News Ticker - Version 1.4.7

Version Description

  • Fixed bug in edit page type & mode filters
  • CSS adjustments for rotate buttons
Download this release

Release Info

Developer metaphorcreations
Plugin Icon 128x128 Ditty News Ticker
Version 1.4.7
Comparing to
See all releases

Code changes from version 1.4.6 to 1.4.7

assets/css/style.css CHANGED
@@ -131,7 +131,6 @@
131
  font-size: 18px;
132
  line-height: 18px;
133
  color: #CCC;
134
- margin: 0 2px;
135
  }
136
  .mtphr-dnt-control-button:hover {
137
  text-decoration: none !important;
131
  font-size: 18px;
132
  line-height: 18px;
133
  color: #CCC;
 
134
  }
135
  .mtphr-dnt-control-button:hover {
136
  text-decoration: none !important;
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.6
7
  Author: Metaphor Creations
8
  Author URI: http://www.metaphorcreations.com
9
  License: GPL2
@@ -32,7 +32,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
32
  /* !Define constants - 1.4.6 */
33
  /* --------------------------------------------------------- */
34
 
35
- define ( 'MTPHR_DNT_VERSION', '1.4.6' );
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.7
7
  Author: Metaphor Creations
8
  Author URI: http://www.metaphorcreations.com
9
  License: GPL2
32
  /* !Define constants - 1.4.6 */
33
  /* --------------------------------------------------------- */
34
 
35
+ define ( 'MTPHR_DNT_VERSION', '1.4.7' );
36
  define ( 'MTPHR_DNT_DIR', plugin_dir_path(__FILE__) );
37
  define ( 'MTPHR_DNT_URL', plugins_url().'/ditty-news-ticker' );
38
 
includes/admin/edit-columns.php CHANGED
@@ -158,7 +158,7 @@ add_action( 'restrict_manage_posts','mtphr_dnt_edit_screen_filters' );
158
 
159
 
160
  /* --------------------------------------------------------- */
161
- /* !Filter the list of tickers - 1.4.5 */
162
  /* --------------------------------------------------------- */
163
 
164
  function mtphr_dnt_parse_query( $query ) {
@@ -170,14 +170,14 @@ function mtphr_dnt_parse_query( $query ) {
170
 
171
  $meta_query = array();
172
 
173
- if( isset($_GET['dnt_type']) ) {
174
  $meta_query[] = array(
175
  'key' => '_mtphr_dnt_type',
176
  'value' => $_GET['dnt_type'],
177
  );
178
  }
179
 
180
- if( isset($_GET['dnt_mode']) ) {
181
  $meta_query[] = array(
182
  'key' => '_mtphr_dnt_mode',
183
  'value' => $_GET['dnt_mode'],
158
 
159
 
160
  /* --------------------------------------------------------- */
161
+ /* !Filter the list of tickers - 1.4.7 */
162
  /* --------------------------------------------------------- */
163
 
164
  function mtphr_dnt_parse_query( $query ) {
170
 
171
  $meta_query = array();
172
 
173
+ if( isset($_GET['dnt_type']) && $_GET['dnt_type'] != '' ) {
174
  $meta_query[] = array(
175
  'key' => '_mtphr_dnt_type',
176
  'value' => $_GET['dnt_type'],
177
  );
178
  }
179
 
180
+ if( isset($_GET['dnt_mode']) && $_GET['dnt_mode'] != '' ) {
181
  $meta_query[] = array(
182
  'key' => '_mtphr_dnt_mode',
183
  'value' => $_GET['dnt_mode'],
readme.txt CHANGED
@@ -54,6 +54,10 @@ Each individual Ticker post has multiple settings to customize.
54
 
55
  == Changelog ==
56
 
 
 
 
 
57
  = 1.4.6 =
58
  * Added plugin activation/de-activation to flush rewrite rules
59
  * Moved admin files into separate admin directories
@@ -230,4 +234,4 @@ Each individual Ticker post has multiple settings to customize.
230
 
231
  == Upgrade Notice ==
232
 
233
- Added flush rewrite fules. Directory cleanup. Attempted to set file permissions on fontastic directory.
54
 
55
  == Changelog ==
56
 
57
+ = 1.4.7 =
58
+ * Fixed bug in edit page type & mode filters
59
+ * CSS adjustments for rotate buttons
60
+
61
  = 1.4.6 =
62
  * Added plugin activation/de-activation to flush rewrite rules
63
  * Moved admin files into separate admin directories
234
 
235
  == Upgrade Notice ==
236
 
237
+ Fixed bug in edit page type & mode filters. CSS adjustments for rotate buttons