Code Snippets - Version 1.7.1.2

Version Description

  • Correct path to admin menu icon (#)
Download this release

Release Info

Developer bungeshea
Plugin Icon Code Snippets
Version 1.7.1.2
Comparing to
See all releases

Code changes from version 1.7.1.1 to 1.7.1.2

Files changed (3) hide show
  1. code-snippets.php +2 -2
  2. includes/class-admin.php +1 -1
  3. readme.txt +8 -2
code-snippets.php CHANGED
@@ -16,7 +16,7 @@
16
  * Description: An easy, clean and simple way to add code snippets to your site. No need to edit to your theme's functions.php file again!
17
  * Author: Shea Bunge
18
  * Author URI: http://bungeshea.com
19
- * Version: 1.7.1.1
20
  * License: MIT
21
  * License URI: license.txt
22
  * Text Domain: code-snippets
@@ -53,7 +53,7 @@ final class Code_Snippets {
53
  * @access public
54
  * @var string A PHP-standardized version number string
55
  */
56
- public $version = '1.7.1.1';
57
 
58
  /**
59
  * Variables to hold plugin paths
16
  * Description: An easy, clean and simple way to add code snippets to your site. No need to edit to your theme's functions.php file again!
17
  * Author: Shea Bunge
18
  * Author URI: http://bungeshea.com
19
+ * Version: 1.7.1.2
20
  * License: MIT
21
  * License URI: license.txt
22
  * Text Domain: code-snippets
53
  * @access public
54
  * @var string A PHP-standardized version number string
55
  */
56
+ public $version = '1.7.1.2';
57
 
58
  /**
59
  * Variables to hold plugin paths
includes/class-admin.php CHANGED
@@ -173,7 +173,7 @@ class Code_Snippets_Admin {
173
 
174
  /* Use a different screen icon for the MP6 interface */
175
  if ( get_user_option( 'admin_color' ) !== 'mp6' )
176
- $menu_icon = apply_filters( 'code_snippets_menu_icon', plugins_url( 'images/menu-icon.png', $code_snippets->file ) );
177
  else
178
  $menu_icon = 'div';
179
 
173
 
174
  /* Use a different screen icon for the MP6 interface */
175
  if ( get_user_option( 'admin_color' ) !== 'mp6' )
176
+ $menu_icon = apply_filters( 'code_snippets_menu_icon', plugins_url( 'assets/menu-icon.png', $code_snippets->file ) );
177
  else
178
  $menu_icon = 'div';
179
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://code-snippets.bungeshea.com/donate/
4
  Tags: code-snippets, snippets, code, php, network, multisite
5
  Requires at least: 3.3
6
  Tested up to: 3.6
7
- Stable tag: 1.7.1.1
8
  License: MIT
9
  License URI: license.txt
10
 
@@ -111,12 +111,15 @@ That's fantastic! Join me on [GitHub](https://github.com/bungeshea/code-snippets
111
 
112
  == Changelog ==
113
 
 
 
 
114
  = 1.7.1.1 =
115
  * Fix a minor bug with custom capabilities and admin menus
116
 
117
  = 1.7.1 =
118
  * Fix a bug with snippet being set as deactivated when saved
119
- * Updated PHP Documentation completely. [[View online](http://bungeshea.github.io/code-snippets/api)]
120
  * Only load admin functions when viewing dashboard
121
  * Added German translation thanks to [David Decker](http://deckerweb.de)
122
  * Allow or deny site administrators access to snippet admin menus. Set your preference in the **Enable Administration Menus** setting under the *Settings > Network Settings* network admin menu.
@@ -207,6 +210,9 @@ Plugin updates will be posted on the [plugin's homepage](http://code-snippets.bu
207
 
208
  == Upgrade Notice ==
209
 
 
 
 
210
  = 1.7.1.1 =
211
  Fixes a minor bug with custom capabilities and admin menus
212
 
4
  Tags: code-snippets, snippets, code, php, network, multisite
5
  Requires at least: 3.3
6
  Tested up to: 3.6
7
+ Stable tag: 1.7.1.2
8
  License: MIT
9
  License URI: license.txt
10
 
111
 
112
  == Changelog ==
113
 
114
+ = 1.7.1.2 =
115
+ * Correct path to admin menu icon ([#](http://wordpress.org/support/topic/icon-disappears-with-mp6?replies=6#post-4148319))
116
+
117
  = 1.7.1.1 =
118
  * Fix a minor bug with custom capabilities and admin menus
119
 
120
  = 1.7.1 =
121
  * Fix a bug with snippet being set as deactivated when saved
122
+ * Updated PHP Documentation completely. [View online](http://bungeshea.github.io/code-snippets/api)
123
  * Only load admin functions when viewing dashboard
124
  * Added German translation thanks to [David Decker](http://deckerweb.de)
125
  * Allow or deny site administrators access to snippet admin menus. Set your preference in the **Enable Administration Menus** setting under the *Settings > Network Settings* network admin menu.
210
 
211
  == Upgrade Notice ==
212
 
213
+ = 1.7.1.2 =
214
+ Fixes the admin menu icon not loading
215
+
216
  = 1.7.1.1 =
217
  Fixes a minor bug with custom capabilities and admin menus
218