Plugin Directory

Changeset 2012709 for tinymce-advanced


Ignore:
Timestamp:
01/15/2019 01:51:26 PM (7 years ago)
Author:
azaozz
Message:

5.0.1-alpha. Fix typos. Fix settings import bug.

Location:
tinymce-advanced/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tinymce-advanced/trunk/readme.txt

    r2011516 r2012709  
    5252* Added several new buttons to the rich-text toolbar in the Block Editor.
    5353* Added functionality to add, remove and arrange most buttons on the rich-text toolbar in the Block Editor.
    54 * Added alternative location for buttons for the rich-text comonent. That lets users move buttons that are not used frequently out of the way.
     54* Added alternative location for buttons for the rich-text component. That lets users move buttons that are not used frequently out of the way.
    5555* Added settings for selected text color and background color.
    5656* Improved fixes and enhancements for the Classic Block.
  • tinymce-advanced/trunk/tadv_admin.php

    r2011503 r2012709  
    724724        </p>
    725725        <p>
    726             <?php _e( 'In addition most default blocks can be transformed into classic paragraphs, and a Classis Paragraph can be converted to multiple blocks.', 'tinymce-advanced' ); ?>
     726            <?php _e( 'In addition most default blocks can be transformed into classic paragraphs, and a Classic Paragraph can be converted to multiple blocks.', 'tinymce-advanced' ); ?>
    727727            <?php _e( 'It can be used everywhere instead of the Paragraph Block including in columns, when creating reusable blocks, etc.', 'tinymce-advanced' ); ?>
    728728        </p>
  • tinymce-advanced/trunk/tinymce-advanced.php

    r2011503 r2012709  
    44Plugin URI: http://www.laptoptips.ca/projects/tinymce-advanced/
    55Description: Enables advanced features and plugins in TinyMCE, the visual editor in WordPress.
    6 Version: 5.0.0
     6Version: 5.0.1-alpha
    77Author: Andrew Ozz
    88Author URI: http://www.laptoptips.ca/
     
    10331033                $panels_block[] = 'tadv/background-color-panel';
    10341034            }
    1035         }
    1036 
    1037         $settings[ 'panels_block' ] = implode( ',', $panels_block );
     1035
     1036            $panels_block = implode( ',', $panels_block );
     1037        }
     1038
     1039        $settings[ 'panels_block' ] = $panels_block;
    10381040
    10391041        if ( ! empty( $user_settings['options'] ) ) {
Note: See TracChangeset for help on using the changeset viewer.