Plugin Directory

Changeset 2195818


Ignore:
Timestamp:
11/18/2019 05:28:28 PM (6 years ago)
Author:
hallsofmontezuma
Message:

releasing 3.3.3

Location:
all-in-one-seo-pack
Files:
3 deleted
4 edited
26 copied

Legend:

Unmodified
Added
Removed
  • all-in-one-seo-pack/tags/3.3.3/all_in_one_seo_pack.php

    r2192264 r2195818  
    44Plugin URI: https://semperplugins.com/all-in-one-seo-pack-pro-version/
    55Description: Out-of-the-box SEO for WordPress. Features like XML Sitemaps, SEO for custom post types, SEO for blogs or business sites, SEO for ecommerce sites, and much more. More than 50 million downloads since 2007.
    6 Version: 3.3.2
     6Version: 3.3.3
    77Author: Michael Torbert
    88Author URI: https://semperplugins.com/all-in-one-seo-pack-pro-version/
     
    3232 *
    3333 * @package All-in-One-SEO-Pack
    34  * @version 3.3.2
     34 * @version 3.3.3
    3535 */
    3636
     
    4646}
    4747if ( ! defined( 'AIOSEOP_VERSION' ) ) {
    48     define( 'AIOSEOP_VERSION', '3.3.2' );
     48    define( 'AIOSEOP_VERSION', '3.3.3' );
    4949}
    5050
  • all-in-one-seo-pack/tags/3.3.3/js/admin/aioseop-count-chars.js

    r2192264 r2195818  
    2929    }
    3030    else if ('undefined' !== typeof aioseopOGCharacterCounter) {
     31        isGutenberg   = aioseopOGCharacterCounter.isGutenberg;
    3132        pluginDirName = aioseopOGCharacterCounter.pluginDirName;
    3233        currentPage   = aioseopOGCharacterCounter.currentPage;
     
    195196            case 'aiosp_title':
    196197            case 'aioseop_opengraph_settings_title':
    197                 counterField.val(+$('#aiosp_snippet_title').parent()[0].innerText.length);
     198                if( 'undefined' !== typeof $('#aiosp_snippet_title').parent()[0]) {
     199                    counterField.val(+$('#aiosp_snippet_title').parent()[0].innerText.length);
     200                }
    198201                break;
    199202            default:
  • all-in-one-seo-pack/tags/3.3.3/modules/aioseop_opengraph.php

    r2190206 r2195818  
    18851885         */
    18861886        public function admin_enqueue_scripts( $hook_suffix ) {
     1887            global $current_screen;
     1888
     1889            $is_gutenberg = 'false';
     1890            if ( method_exists( $current_screen, 'is_block_editor' ) && $current_screen->is_block_editor() ) {
     1891                $is_gutenberg = 'true';
     1892            }
     1893
    18871894            switch ( $hook_suffix ) {
    18881895                case 'term.php':
     
    19131920
    19141921                    $count_chars_data = array(
     1922                        'isGutenberg'   => $is_gutenberg,
    19151923                        'pluginDirName' => AIOSEOP_PLUGIN_DIRNAME,
    19161924                        'currentPage'   => $hook_suffix,
  • all-in-one-seo-pack/tags/3.3.3/readme.txt

    r2192264 r2195818  
    44Requires at least: 4.9
    55Tested up to: 5.3
    6 Stable tag: 3.3.2
     6Stable tag: 3.3.3
    77License: GPLv2 or later
    88Requires PHP: 5.2.4
  • all-in-one-seo-pack/trunk/all_in_one_seo_pack.php

    r2192264 r2195818  
    44Plugin URI: https://semperplugins.com/all-in-one-seo-pack-pro-version/
    55Description: Out-of-the-box SEO for WordPress. Features like XML Sitemaps, SEO for custom post types, SEO for blogs or business sites, SEO for ecommerce sites, and much more. More than 50 million downloads since 2007.
    6 Version: 3.3.2
     6Version: 3.3.3
    77Author: Michael Torbert
    88Author URI: https://semperplugins.com/all-in-one-seo-pack-pro-version/
     
    3232 *
    3333 * @package All-in-One-SEO-Pack
    34  * @version 3.3.2
     34 * @version 3.3.3
    3535 */
    3636
     
    4646}
    4747if ( ! defined( 'AIOSEOP_VERSION' ) ) {
    48     define( 'AIOSEOP_VERSION', '3.3.2' );
     48    define( 'AIOSEOP_VERSION', '3.3.3' );
    4949}
    5050
  • all-in-one-seo-pack/trunk/js/admin/aioseop-count-chars.js

    r2192264 r2195818  
    2929    }
    3030    else if ('undefined' !== typeof aioseopOGCharacterCounter) {
     31        isGutenberg   = aioseopOGCharacterCounter.isGutenberg;
    3132        pluginDirName = aioseopOGCharacterCounter.pluginDirName;
    3233        currentPage   = aioseopOGCharacterCounter.currentPage;
     
    195196            case 'aiosp_title':
    196197            case 'aioseop_opengraph_settings_title':
    197                 counterField.val(+$('#aiosp_snippet_title').parent()[0].innerText.length);
     198                if( 'undefined' !== typeof $('#aiosp_snippet_title').parent()[0]) {
     199                    counterField.val(+$('#aiosp_snippet_title').parent()[0].innerText.length);
     200                }
    198201                break;
    199202            default:
  • all-in-one-seo-pack/trunk/modules/aioseop_opengraph.php

    r2190206 r2195818  
    18851885         */
    18861886        public function admin_enqueue_scripts( $hook_suffix ) {
     1887            global $current_screen;
     1888
     1889            $is_gutenberg = 'false';
     1890            if ( method_exists( $current_screen, 'is_block_editor' ) && $current_screen->is_block_editor() ) {
     1891                $is_gutenberg = 'true';
     1892            }
     1893
    18871894            switch ( $hook_suffix ) {
    18881895                case 'term.php':
     
    19131920
    19141921                    $count_chars_data = array(
     1922                        'isGutenberg'   => $is_gutenberg,
    19151923                        'pluginDirName' => AIOSEOP_PLUGIN_DIRNAME,
    19161924                        'currentPage'   => $hook_suffix,
  • all-in-one-seo-pack/trunk/readme.txt

    r2192264 r2195818  
    44Requires at least: 4.9
    55Tested up to: 5.3
    6 Stable tag: 3.3.2
     6Stable tag: 3.3.3
    77License: GPLv2 or later
    88Requires PHP: 5.2.4
Note: See TracChangeset for help on using the changeset viewer.