HeadSpace2 SEO - Version 3.6.42

Version Description

  • Fix drag and drop problem with WP 3.5
Download this release

Release Info

Developer johnny5
Plugin Icon wp plugin HeadSpace2 SEO
Version 3.6.42
Comparing to
See all releases

Code changes from version 3.6.41 to 3.6.42

Files changed (3) hide show
  1. js/headspace.js +7 -3
  2. modules/page/site_name.php +1 -1
  3. readme.txt +4 -0
js/headspace.js CHANGED
@@ -101,9 +101,13 @@ var HeadSpace;
101
  }
102
 
103
  function page_modules() {
104
- $('#simple-modules').sortable( 'destroy' ).sortable( { connectWith: ['#advanced-modules', '#disabled-modules'], opacity: 0.7, update: save_sort } );
105
- $('#advanced-modules').sortable( 'destroy' ).sortable( { connectWith: ['#simple-modules', '#disabled-modules'], opacity: 0.7, update: save_sort } );
106
- $('#disabled-modules').sortable( 'destroy' ).sortable( { connectWith: ['#simple-modules', '#advanced-modules'], opacity: 0.7, update: save_sort } );
 
 
 
 
107
 
108
  // Help toggles
109
  $( 'a.help' ).unbind( 'click' ).click(function() {
101
  }
102
 
103
  function page_modules() {
104
+ $('#simple-modules').filter(":ui-sortable").sortable("destroy");
105
+ $('#advanced-modules').filter(":ui-sortable").sortable("destroy");
106
+ $('#disabled-modules').filter(":ui-sortable").sortable("destroy");
107
+
108
+ $('#simple-modules').sortable( { connectWith: ['#advanced-modules', '#disabled-modules'], opacity: 0.7, update: save_sort } );
109
+ $('#advanced-modules').sortable( { connectWith: ['#simple-modules', '#disabled-modules'], opacity: 0.7, update: save_sort } );
110
+ $('#disabled-modules').sortable( { connectWith: ['#simple-modules', '#advanced-modules'], opacity: 0.7, update: save_sort } );
111
 
112
  // Help toggles
113
  $( 'a.help' ).unbind( 'click' ).click(function() {
modules/page/site_name.php CHANGED
@@ -42,7 +42,7 @@ class HSM_SiteName extends HSM_Module
42
  **/
43
  function option_blogname ($tagline) {
44
  global $headspace2;
45
- if ($headspace2->ugly_hack !== true)
46
  HeadSpace2::reload ($this);
47
 
48
  if (strlen ($this->blog_name) > 0)
42
  **/
43
  function option_blogname ($tagline) {
44
  global $headspace2;
45
+ if ( isset( $headspace2->ugly_hack ) && $headspace2->ugly_hack !== true)
46
  HeadSpace2::reload ($this);
47
 
48
  if (strlen ($this->blog_name) > 0)
readme.txt CHANGED
@@ -120,6 +120,10 @@ You can find full details of installing a plugin on the [plugin installation pag
120
  Full documentation can be found on the [HeadSpace2](http://urbangiraffe.com/plugins/headspace2/) page.
121
 
122
  == Changelog ==
 
 
 
 
123
  = 3.6.41 =
124
  * Fix problem with 'plugins' module causing post edit page to stop loading fully
125
 
120
  Full documentation can be found on the [HeadSpace2](http://urbangiraffe.com/plugins/headspace2/) page.
121
 
122
  == Changelog ==
123
+
124
+ = 3.6.42 =
125
+ * Fix drag and drop problem with WP 3.5
126
+
127
  = 3.6.41 =
128
  * Fix problem with 'plugins' module causing post edit page to stop loading fully
129