Plugin Directory

Changeset 1161587


Ignore:
Timestamp:
05/16/2015 12:48:20 AM (11 years ago)
Author:
pogidude
Message:

hotfix v2.16.6. fix wrong object used to create button stylesheet resulting in fatal error

Location:
magic-action-box
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • magic-action-box/tags/2.16.6/lib/classes/MAB_Template.php

    r1134385 r1161587  
    142142        /* create custom buttons stylesheet if its not there */
    143143        if( !file_exists( mab_get_custom_buttons_stylesheet_path() ) ){
    144             $MabButton = MAB('admin');
     144            $MabButton = MAB('button');
    145145            $MabButton->writeConfiguredButtonsStylesheet( $MabButton->getConfiguredButtons(), '' );
    146146        }
  • magic-action-box/tags/2.16.6/lib/stylesheets.php

    r1134385 r1161587  
    366366        @chmod(mab_get_stylesheet_location('path'), 0777);
    367367    }
    368     if ( !is_writable(mab_get_stylesheet_location('path')) ) {
     368    if ( is_writable(mab_get_stylesheet_location('path')) ) {
    369369        return true;
    370370    }
  • magic-action-box/tags/2.16.6/magic-action-box.php

    r1158464 r1161587  
    44 * Plugin URI: http://magicactionbox.com
    55 * Description: Supercharge your blog posts!
    6  * Version: 2.16.5
     6 * Version: 2.16.6
    77 * Author: Prosulum, LLC
    88 * Author URI: http://prosulum.com
     
    1010 */
    1111
    12 define( 'MAB_VERSION', '2.16.5');
     12define( 'MAB_VERSION', '2.16.6');
    1313//e.g. /var/www/example.com/wordpress/wp-content/plugins/after-post-action-box
    1414define( "MAB_DIR", plugin_dir_path( __FILE__ ) );
  • magic-action-box/tags/2.16.6/readme.txt

    r1158464 r1161587  
    55Requires at least: 3.5
    66Tested up to: 4.2.2
    7 Stable tag: 2.16.5
     7Stable tag: 2.16.6
    88
    99Magic Action Box let's you display professional looking opt-in forms and feature boxes in your WordPress site.
     
    100100
    101101== Changelog ==
     102= 2.16.6 =
     103*2015-05-16*
     104* fix wrong object used to create button stylesheet resulting in fatal error
     105
    102106= 2.16.5 =
    103107*2015-05-11*
  • magic-action-box/trunk/lib/classes/MAB_Template.php

    r1134385 r1161587  
    142142        /* create custom buttons stylesheet if its not there */
    143143        if( !file_exists( mab_get_custom_buttons_stylesheet_path() ) ){
    144             $MabButton = MAB('admin');
     144            $MabButton = MAB('button');
    145145            $MabButton->writeConfiguredButtonsStylesheet( $MabButton->getConfiguredButtons(), '' );
    146146        }
  • magic-action-box/trunk/lib/stylesheets.php

    r1134385 r1161587  
    366366        @chmod(mab_get_stylesheet_location('path'), 0777);
    367367    }
    368     if ( !is_writable(mab_get_stylesheet_location('path')) ) {
     368    if ( is_writable(mab_get_stylesheet_location('path')) ) {
    369369        return true;
    370370    }
  • magic-action-box/trunk/magic-action-box.php

    r1158464 r1161587  
    44 * Plugin URI: http://magicactionbox.com
    55 * Description: Supercharge your blog posts!
    6  * Version: 2.16.5
     6 * Version: 2.16.6
    77 * Author: Prosulum, LLC
    88 * Author URI: http://prosulum.com
     
    1010 */
    1111
    12 define( 'MAB_VERSION', '2.16.5');
     12define( 'MAB_VERSION', '2.16.6');
    1313//e.g. /var/www/example.com/wordpress/wp-content/plugins/after-post-action-box
    1414define( "MAB_DIR", plugin_dir_path( __FILE__ ) );
  • magic-action-box/trunk/readme.txt

    r1158464 r1161587  
    55Requires at least: 3.5
    66Tested up to: 4.2.2
    7 Stable tag: 2.16.5
     7Stable tag: 2.16.6
    88
    99Magic Action Box let's you display professional looking opt-in forms and feature boxes in your WordPress site.
     
    100100
    101101== Changelog ==
     102= 2.16.6 =
     103*2015-05-16*
     104* fix wrong object used to create button stylesheet resulting in fatal error
     105
    102106= 2.16.5 =
    103107*2015-05-11*
Note: See TracChangeset for help on using the changeset viewer.