Plugin Directory

Changeset 1735386


Ignore:
Timestamp:
09/25/2017 10:40:05 AM (9 years ago)
Author:
wpsimpleseo
Message:

Adding version 1.0.5

Location:
wp-simple-seo/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-simple-seo/trunk/assets/js/preview.js

    r1571988 r1735386  
    4242             */
    4343            case 'post':
    44                 // Append TinyMCE content and Permalink
    45                 form_data += '&post_content=' + tinymce.activeEditor.getContent();
     44                // Append TinyMCE content and Permalink, if they're available
     45                if ( tinymce.activeEditor ) {
     46                    form_data += '&post_content=' + tinymce.activeEditor.getContent();
     47                }
    4648                form_data += '&post_url=' + $( 'span#sample-permalink' ).text();
    4749                break;
  • wp-simple-seo/trunk/includes/global/settings.php

    r1712002 r1735386  
    835835        // Special check for Posts
    836836        $page_for_posts = get_option( 'page_for_posts' );
    837         if ( $post_type->name == 'post' && get_option( 'show_on_front' ) == 'page' && ! empty( $page_for_posts ) ) {
     837        $show_on_front = get_option( 'show_on_front' );
     838        if ( $post_type->name == 'post' && $show_on_front == 'page' && ! empty( $page_for_posts ) ) {
    838839            return true;
    839840        }
  • wp-simple-seo/trunk/readme.txt

    r1710865 r1735386  
    44Tags: bing, canonical, google, google search console, google sitemap, google webmaster tools, meta, meta description, robots, search engine optimization, seo, sitemap, sitemaps, social, xml sitemap
    55Requires at least: 4.5
    6 Tested up to: 4.8.1
     6Tested up to: 4.8.2
    77Stable tag: trunk
    88License: GPLv2 or later
     
    158158== Changelog ==
    159159
     160= 1.0.5 =
     161* Fix: JS error on preview.js when TinyMCE is not initialised
     162* Fix: Fatal error: Can't use function return value in write context in includes/global/settings.php on line 836
     163
    160164= 1.0.4 =
    161165* Fix: Fatal error: Can't use function return value in write context in _modules/licensing/lum.php on line 411
  • wp-simple-seo/trunk/wp-simple-seo.php

    r1710865 r1735386  
    33* Plugin Name: WP Simple SEO
    44* Plugin URI: https://wpsimpleseo.com
    5 * Version: 1.0.4
     5* Version: 1.0.5
    66* Author: WP Simple SEO
    77* Author URI: https://wpsimpleseo.com
     
    5959        $this->plugin->folder       = plugin_dir_path( __FILE__ );
    6060        $this->plugin->url          = plugin_dir_url( __FILE__ );
    61         $this->plugin->version      = '1.0.4';
     61        $this->plugin->version      = '1.0.5';
    6262        $this->plugin->home_url     = 'https://wpsimpleseo.com';
    6363        $this->plugin->support_url  = 'https://wpsimpleseo.com/documentation/support';
Note: See TracChangeset for help on using the changeset viewer.