Changeset 1161587
- Timestamp:
- 05/16/2015 12:48:20 AM (11 years ago)
- Location:
- magic-action-box
- Files:
-
- 8 edited
- 1 copied
-
tags/2.16.6 (copied) (copied from magic-action-box/trunk)
-
tags/2.16.6/lib/classes/MAB_Template.php (modified) (1 diff)
-
tags/2.16.6/lib/stylesheets.php (modified) (1 diff)
-
tags/2.16.6/magic-action-box.php (modified) (2 diffs)
-
tags/2.16.6/readme.txt (modified) (2 diffs)
-
trunk/lib/classes/MAB_Template.php (modified) (1 diff)
-
trunk/lib/stylesheets.php (modified) (1 diff)
-
trunk/magic-action-box.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
magic-action-box/tags/2.16.6/lib/classes/MAB_Template.php
r1134385 r1161587 142 142 /* create custom buttons stylesheet if its not there */ 143 143 if( !file_exists( mab_get_custom_buttons_stylesheet_path() ) ){ 144 $MabButton = MAB(' admin');144 $MabButton = MAB('button'); 145 145 $MabButton->writeConfiguredButtonsStylesheet( $MabButton->getConfiguredButtons(), '' ); 146 146 } -
magic-action-box/tags/2.16.6/lib/stylesheets.php
r1134385 r1161587 366 366 @chmod(mab_get_stylesheet_location('path'), 0777); 367 367 } 368 if ( !is_writable(mab_get_stylesheet_location('path')) ) {368 if ( is_writable(mab_get_stylesheet_location('path')) ) { 369 369 return true; 370 370 } -
magic-action-box/tags/2.16.6/magic-action-box.php
r1158464 r1161587 4 4 * Plugin URI: http://magicactionbox.com 5 5 * Description: Supercharge your blog posts! 6 * Version: 2.16. 56 * Version: 2.16.6 7 7 * Author: Prosulum, LLC 8 8 * Author URI: http://prosulum.com … … 10 10 */ 11 11 12 define( 'MAB_VERSION', '2.16. 5');12 define( 'MAB_VERSION', '2.16.6'); 13 13 //e.g. /var/www/example.com/wordpress/wp-content/plugins/after-post-action-box 14 14 define( "MAB_DIR", plugin_dir_path( __FILE__ ) ); -
magic-action-box/tags/2.16.6/readme.txt
r1158464 r1161587 5 5 Requires at least: 3.5 6 6 Tested up to: 4.2.2 7 Stable tag: 2.16. 57 Stable tag: 2.16.6 8 8 9 9 Magic Action Box let's you display professional looking opt-in forms and feature boxes in your WordPress site. … … 100 100 101 101 == Changelog == 102 = 2.16.6 = 103 *2015-05-16* 104 * fix wrong object used to create button stylesheet resulting in fatal error 105 102 106 = 2.16.5 = 103 107 *2015-05-11* -
magic-action-box/trunk/lib/classes/MAB_Template.php
r1134385 r1161587 142 142 /* create custom buttons stylesheet if its not there */ 143 143 if( !file_exists( mab_get_custom_buttons_stylesheet_path() ) ){ 144 $MabButton = MAB(' admin');144 $MabButton = MAB('button'); 145 145 $MabButton->writeConfiguredButtonsStylesheet( $MabButton->getConfiguredButtons(), '' ); 146 146 } -
magic-action-box/trunk/lib/stylesheets.php
r1134385 r1161587 366 366 @chmod(mab_get_stylesheet_location('path'), 0777); 367 367 } 368 if ( !is_writable(mab_get_stylesheet_location('path')) ) {368 if ( is_writable(mab_get_stylesheet_location('path')) ) { 369 369 return true; 370 370 } -
magic-action-box/trunk/magic-action-box.php
r1158464 r1161587 4 4 * Plugin URI: http://magicactionbox.com 5 5 * Description: Supercharge your blog posts! 6 * Version: 2.16. 56 * Version: 2.16.6 7 7 * Author: Prosulum, LLC 8 8 * Author URI: http://prosulum.com … … 10 10 */ 11 11 12 define( 'MAB_VERSION', '2.16. 5');12 define( 'MAB_VERSION', '2.16.6'); 13 13 //e.g. /var/www/example.com/wordpress/wp-content/plugins/after-post-action-box 14 14 define( "MAB_DIR", plugin_dir_path( __FILE__ ) ); -
magic-action-box/trunk/readme.txt
r1158464 r1161587 5 5 Requires at least: 3.5 6 6 Tested up to: 4.2.2 7 Stable tag: 2.16. 57 Stable tag: 2.16.6 8 8 9 9 Magic Action Box let's you display professional looking opt-in forms and feature boxes in your WordPress site. … … 100 100 101 101 == Changelog == 102 = 2.16.6 = 103 *2015-05-16* 104 * fix wrong object used to create button stylesheet resulting in fatal error 105 102 106 = 2.16.5 = 103 107 *2015-05-11*
Note: See TracChangeset
for help on using the changeset viewer.