WP Native Dashboard - Version 1.3.2

Version Description

Download this release

Release Info

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

Code changes from version 1.3.1 to 1.3.2

Files changed (3) hide show
  1. automattic.php +9 -1
  2. readme.txt +7 -2
  3. wp-native-dashboard.php +1 -1
automattic.php CHANGED
@@ -54,6 +54,9 @@ class wp_native_dashboard_automattic {
54
  });
55
 
56
  });
 
 
 
57
  },
58
  error: function(XMLHttpRequest, textStatus, errorThrown) {
59
  //handled in next version that also support all file system types
@@ -167,7 +170,9 @@ class wp_native_dashboard_automattic {
167
  });
168
  });
169
  elem.parent().find('.ajax-feedback').css({visibility : 'hidden' });
170
- csl_refresh_language_switcher();
 
 
171
  },
172
  error: function(XMLHttpRequest, textStatus, errorThrown) {
173
  //handled in next version that also support all file system types
@@ -327,8 +332,10 @@ class wp_native_dashboard_automattic {
327
 
328
  if (is_user_logged_in() && current_user_can('manage_options')) {
329
  global $wp_filesystem, $parent_file;
 
330
  $current_parent = $parent_file;
331
  $parent_file = 'tools.php'; //needed for screen icon :-)
 
332
 
333
  //check the file system
334
  ob_start();
@@ -392,6 +399,7 @@ class wp_native_dashboard_automattic {
392
  global $wp_filesystem, $parent_file;
393
  $current_parent = $parent_file;
394
  $parent_file = 'tools.php'; //needed for screen icon :-)
 
395
 
396
  //check the file system
397
  ob_start();
54
  });
55
 
56
  });
57
+ if(typeof csl_refresh_language_switcher == 'function') {
58
+ csl_refresh_language_switcher();
59
+ }
60
  },
61
  error: function(XMLHttpRequest, textStatus, errorThrown) {
62
  //handled in next version that also support all file system types
170
  });
171
  });
172
  elem.parent().find('.ajax-feedback').css({visibility : 'hidden' });
173
+ if(typeof csl_refresh_language_switcher == 'function') {
174
+ csl_refresh_language_switcher();
175
+ }
176
  },
177
  error: function(XMLHttpRequest, textStatus, errorThrown) {
178
  //handled in next version that also support all file system types
332
 
333
  if (is_user_logged_in() && current_user_can('manage_options')) {
334
  global $wp_filesystem, $parent_file;
335
+
336
  $current_parent = $parent_file;
337
  $parent_file = 'tools.php'; //needed for screen icon :-)
338
+ if (function_exists('set_current_screen')) set_current_screen('tools'); //WP 3.0 fix
339
 
340
  //check the file system
341
  ob_start();
399
  global $wp_filesystem, $parent_file;
400
  $current_parent = $parent_file;
401
  $parent_file = 'tools.php'; //needed for screen icon :-)
402
+ if (function_exists('set_current_screen')) set_current_screen('tools'); //WP 3.0 fix
403
 
404
  //check the file system
405
  ob_start();
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: codestyling
3
  Tags: wordpress, dashboard, multi-lingual, languages, backend, localization, plugin
4
  Requires at least: 2.7
5
- Tested up to: 3.0
6
- Stable tag: 1.3.1
7
 
8
  Enables selection of administration language either by logon, dashboard quick switcher or user profile setting.
9
 
@@ -46,6 +46,11 @@ Please visit [the official website](http://www.code-styling.de/english/developme
46
 
47
  == Changelog ==
48
 
 
 
 
 
 
49
  = Version 1.3.1 =
50
  * clean working debug mode (removed deprecated warnings)
51
  * bugfix for user specific values during config
2
  Contributors: codestyling
3
  Tags: wordpress, dashboard, multi-lingual, languages, backend, localization, plugin
4
  Requires at least: 2.7
5
+ Tested up to: 3.0.1
6
+ Stable tag: 1.3.2
7
 
8
  Enables selection of administration language either by logon, dashboard quick switcher or user profile setting.
9
 
46
 
47
  == Changelog ==
48
 
49
+ = Version 1.3.2 =
50
+ * bugfix: avoid javascript error if dashboard langswitcher is off but language eigther gets delete or downloaded
51
+ * bugfix: how to get the icon image of user credential has been changed at WP 3.0 core and gots fixed
52
+ * remark: how to use SSH for downloading files is explained here: [SSH and WordPress](http://www.firesidemedia.net/dev/wordpress-install-upgrade-ssh/ "WordPress Tutorial: Using SSH to Install/Upgrade")
53
+
54
  = Version 1.3.1 =
55
  * clean working debug mode (removed deprecated warnings)
56
  * bugfix for user specific values during config
wp-native-dashboard.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.code-styling.de/english/development/wordpress-plugin-wp-
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.1
9
 
10
  License:
11
  ==============================================================================
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.2
9
 
10
  License:
11
  ==============================================================================