Changeset 1735386
- Timestamp:
- 09/25/2017 10:40:05 AM (9 years ago)
- Location:
- wp-simple-seo/trunk
- Files:
-
- 4 edited
-
assets/js/preview.js (modified) (1 diff)
-
includes/global/settings.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-simple-seo.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-simple-seo/trunk/assets/js/preview.js
r1571988 r1735386 42 42 */ 43 43 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 } 46 48 form_data += '&post_url=' + $( 'span#sample-permalink' ).text(); 47 49 break; -
wp-simple-seo/trunk/includes/global/settings.php
r1712002 r1735386 835 835 // Special check for Posts 836 836 $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 ) ) { 838 839 return true; 839 840 } -
wp-simple-seo/trunk/readme.txt
r1710865 r1735386 4 4 Tags: bing, canonical, google, google search console, google sitemap, google webmaster tools, meta, meta description, robots, search engine optimization, seo, sitemap, sitemaps, social, xml sitemap 5 5 Requires at least: 4.5 6 Tested up to: 4.8. 16 Tested up to: 4.8.2 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 158 158 == Changelog == 159 159 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 160 164 = 1.0.4 = 161 165 * 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 3 3 * Plugin Name: WP Simple SEO 4 4 * Plugin URI: https://wpsimpleseo.com 5 * Version: 1.0. 45 * Version: 1.0.5 6 6 * Author: WP Simple SEO 7 7 * Author URI: https://wpsimpleseo.com … … 59 59 $this->plugin->folder = plugin_dir_path( __FILE__ ); 60 60 $this->plugin->url = plugin_dir_url( __FILE__ ); 61 $this->plugin->version = '1.0. 4';61 $this->plugin->version = '1.0.5'; 62 62 $this->plugin->home_url = 'https://wpsimpleseo.com'; 63 63 $this->plugin->support_url = 'https://wpsimpleseo.com/documentation/support';
Note: See TracChangeset
for help on using the changeset viewer.