WP Native Dashboard - Version 1.3.12

Version Description

Download this release

Release Info

Developer codestyling
Plugin Icon wp plugin WP Native Dashboard
Version 1.3.12
Comparing to
See all releases

Code changes from version 1.3.11 to 1.3.12

Files changed (2) hide show
  1. readme.txt +4 -2
  2. wp-native-dashboard.php +2 -2
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: codestyling
3
  Tags: wordpress, dashboard, multi-lingual, languages, backend, localization, plugin
4
  Requires at least: 2.7
5
  Tested up to: 3.6
6
- Stable tag: 1.3.11
7
 
8
  Enables selection of administration language either by logon, dashboard quick switcher or user profile setting.
9
 
@@ -48,10 +48,12 @@ Please visit [the official website](http://www.code-styling.de/english/developme
48
  1. Navigate to your Dashboard and enjoy status informations
49
 
50
  == Changelog ==
 
 
51
 
52
  = Version 1.3.11 =
53
  * feature: showing page language at frontend admin bar, if admin bar should be displayed with backend language
54
- * bugfix: compatibility with WordPress 3.6
55
 
56
  = Version 1.3.10 =
57
  * bugfix: ajax based login plugins (sidebar logins) did not work as expected
3
  Tags: wordpress, dashboard, multi-lingual, languages, backend, localization, plugin
4
  Requires at least: 2.7
5
  Tested up to: 3.6
6
+ Stable tag: 1.3.12
7
 
8
  Enables selection of administration language either by logon, dashboard quick switcher or user profile setting.
9
 
48
  1. Navigate to your Dashboard and enjoy status informations
49
 
50
  == Changelog ==
51
+ = Version 1.3.12 =
52
+ * noop: created to solve the wordpress.org packaging issue for *.zip files
53
 
54
  = Version 1.3.11 =
55
  * feature: showing page language at frontend admin bar, if admin bar should be displayed with backend language
56
+ * bugfix: compatibility with WordPress 3.6, avoid non object access
57
 
58
  = Version 1.3.10 =
59
  * bugfix: ajax based login plugins (sidebar logins) did not work as expected
wp-native-dashboard.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.code-styling.de/english/development/wordpress-plugin-wp-n
5
  Description: You can configure your blog working at administration with different languages depends on users choice and capabilities the admin has been enabled.
6
  Author: Heiko Rabe
7
  Author URI: http://www.code-styling.de/
8
- Version: 1.3.11
9
  Text Domain: wp-native-dashboard
10
 
11
  License:
@@ -272,7 +272,7 @@ class wp_native_dashboard {
272
  }
273
 
274
  function on_admin_init() {
275
- //do all stuff while we are at admin center
276
  if (is_admin()) {
277
  //load the language switcher ajax module if it has been enabled to provide the dropdown extenstion
278
  if ($this->options->enable_language_switcher || $this->options->enable_adminbar_switcher) {
5
  Description: You can configure your blog working at administration with different languages depends on users choice and capabilities the admin has been enabled.
6
  Author: Heiko Rabe
7
  Author URI: http://www.code-styling.de/
8
+ Version: 1.3.12
9
  Text Domain: wp-native-dashboard
10
 
11
  License:
272
  }
273
 
274
  function on_admin_init() {
275
+ //do all stuff while we are at admin center, 3.6 compatibility
276
  if (is_admin()) {
277
  //load the language switcher ajax module if it has been enabled to provide the dropdown extenstion
278
  if ($this->options->enable_language_switcher || $this->options->enable_adminbar_switcher) {