Plugin Directory

Changeset 1058663

Timestamp:
01/02/2015 09:32:32 PM (10 years ago)
Author:
pbaylies
Message:

Bugfix release; fixed bugs related to custom post title formats, noindex meta, exclude sitemap checkbox; tagged release.

Location:
all-in-one-seo-pack
Files:
1 added
2 edited
48 copied

Legend:

Unmodified
Added
Removed
  • all-in-one-seo-pack/tags/2.2.4.1/aioseop_class.php

    r1050425 r1058663  
    15791579                     ( ( $aiosp_nofollow == '' ) && ( !empty( $aioseop_options['aiosp_cpostnofollow'] ) ) && ( in_array( $post_type, $aioseop_options['aiosp_cpostnofollow'] ) ) ) )
    15801580                    $nofollow = "no" . $nofollow;
    1581                 if ( ( $aiosp_noindex == 'on' ) || ( ( !empty( $aioseop_options['aiosp_paginated_noindex'] ) ) && ( ( $page > 1 ) ) ) ||
    1582                      ( ( $aiosp_noindex == '' ) && ( !empty( $aioseop_options['aiosp_cpostnoindex'] ) ) && ( in_array( $post_type, $aioseop_options['aiosp_cpostnoindex'] ) ) ) )
    1583                     $noindex = "no" . $noindex;
    15841581                if ( ( !empty( $aioseop_options['aiosp_cpostnoodp'] ) && ( in_array( $post_type, $aioseop_options['aiosp_cpostnoodp'] ) ) ) )
    15851582                    $aiosp_noodp = true;
     
    25892586                     ( ( $title_type == 'post' ) && is_singular( $wp_post_types ) && $prefix = "aiosp_" ) ) {
    25902587                        $post_type = get_post_type();
    2591                         if ( !empty( $aioseop_options["{$post_type}_title_format"] ) )
     2588                        if ( !empty( $aioseop_options["{$post_type}_title_format"] ) )
    25922589                            $title_format = $aioseop_options["{$prefix}{$post_type}_title_format"];                 
    25932590                }
     
    30493046                    add_post_meta( $id, $field, $$var );
    30503047            }
    3051 
     3048            if (isset( $aiosp_sitemap_exclude ) && !empty( $aiosp_sitemap_exclude ) && $this->is_admin() )
     3049                add_post_meta( $id, '_aioseop_sitemap_exclude', $aiosp_sitemap_exclude );
    30523050            if (isset( $aiosp_disable ) && !empty( $aiosp_disable ) && $this->is_admin() ) {
    30533051                add_post_meta( $id, '_aioseop_disable', $aiosp_disable );
  • all-in-one-seo-pack/tags/2.2.4.1/all_in_one_seo_pack.php

    r1049801 r1058663  
    44Plugin URI: http://semperfiwebdesign.com
    55Description: Out-of-the-box SEO for your WordPress blog. <a href="admin.php?page=all-in-one-seo-pack/aioseop_class.php">Options configuration panel</a> | <a href="http://semperplugins.com/plugins/all-in-one-seo-pack-pro-version/?loc=plugins" target="_blank">Upgrade to Pro Version</a> | <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtorbert%40gmail%2ecom&item_name=All%20In%20One%20SEO%20Pack&item_number=Support%20Open%20Source&no_shipping=0&no_note=1&tax=0&currency_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8">Donate</a> | <a href="http://semperplugins.com/support/" >Support</a> |  <a href="https://www.amazon.com/wishlist/1NFQ133FNCOOA/ref=wl_web" target="_blank" title="Amazon Wish List">Amazon Wishlist</a>
    6 Version: 2.2.4
     6Version: 2.2.4
    77Author: Michael Torbert
    88Author URI: http://michaeltorbert.com
     
    3131/**
    3232 * @package All-in-One-SEO-Pack
    33  * @version 2.2.4
     33 * @version 2.2.4
    3434 */
    3535
    3636global $aioseop_plugin_name;
    37 $aioseop_plugin_name = __( 'All in One SEO Pack', 'all_in_one_seo_pack' );
     37$aioseop_plugin_name = ;
    3838if ( ! defined( 'AIOSEOP_PLUGIN_NAME' ) )
    3939    define( 'AIOSEOP_PLUGIN_NAME', $aioseop_plugin_name );
    4040
    4141if ( ! defined( 'AIOSEOP_VERSION' ) )
    42     define( 'AIOSEOP_VERSION', '2.2.4' );
     42    define( 'AIOSEOP_VERSION', '2.2.4' );
    4343
    4444if ( ! defined( 'AIOSEOP_PLUGIN_DIR' ) ) {
  • all-in-one-seo-pack/trunk/aioseop_class.php

    r1050425 r1058663  
    15791579                     ( ( $aiosp_nofollow == '' ) && ( !empty( $aioseop_options['aiosp_cpostnofollow'] ) ) && ( in_array( $post_type, $aioseop_options['aiosp_cpostnofollow'] ) ) ) )
    15801580                    $nofollow = "no" . $nofollow;
    1581                 if ( ( $aiosp_noindex == 'on' ) || ( ( !empty( $aioseop_options['aiosp_paginated_noindex'] ) ) && ( ( $page > 1 ) ) ) ||
    1582                      ( ( $aiosp_noindex == '' ) && ( !empty( $aioseop_options['aiosp_cpostnoindex'] ) ) && ( in_array( $post_type, $aioseop_options['aiosp_cpostnoindex'] ) ) ) )
    1583                     $noindex = "no" . $noindex;
    15841581                if ( ( !empty( $aioseop_options['aiosp_cpostnoodp'] ) && ( in_array( $post_type, $aioseop_options['aiosp_cpostnoodp'] ) ) ) )
    15851582                    $aiosp_noodp = true;
     
    25892586                     ( ( $title_type == 'post' ) && is_singular( $wp_post_types ) && $prefix = "aiosp_" ) ) {
    25902587                        $post_type = get_post_type();
    2591                         if ( !empty( $aioseop_options["{$post_type}_title_format"] ) )
     2588                        if ( !empty( $aioseop_options["{$post_type}_title_format"] ) )
    25922589                            $title_format = $aioseop_options["{$prefix}{$post_type}_title_format"];                 
    25932590                }
     
    30493046                    add_post_meta( $id, $field, $$var );
    30503047            }
    3051 
     3048            if (isset( $aiosp_sitemap_exclude ) && !empty( $aiosp_sitemap_exclude ) && $this->is_admin() )
     3049                add_post_meta( $id, '_aioseop_sitemap_exclude', $aiosp_sitemap_exclude );
    30523050            if (isset( $aiosp_disable ) && !empty( $aiosp_disable ) && $this->is_admin() ) {
    30533051                add_post_meta( $id, '_aioseop_disable', $aiosp_disable );
  • all-in-one-seo-pack/trunk/all_in_one_seo_pack.php

    r1049801 r1058663  
    44Plugin URI: http://semperfiwebdesign.com
    55Description: Out-of-the-box SEO for your WordPress blog. <a href="admin.php?page=all-in-one-seo-pack/aioseop_class.php">Options configuration panel</a> | <a href="http://semperplugins.com/plugins/all-in-one-seo-pack-pro-version/?loc=plugins" target="_blank">Upgrade to Pro Version</a> | <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtorbert%40gmail%2ecom&item_name=All%20In%20One%20SEO%20Pack&item_number=Support%20Open%20Source&no_shipping=0&no_note=1&tax=0&currency_code=USD&lc=US&bn=PP%2dDonationsBF&charset=UTF%2d8">Donate</a> | <a href="http://semperplugins.com/support/" >Support</a> |  <a href="https://www.amazon.com/wishlist/1NFQ133FNCOOA/ref=wl_web" target="_blank" title="Amazon Wish List">Amazon Wishlist</a>
    6 Version: 2.2.4
     6Version: 2.2.4
    77Author: Michael Torbert
    88Author URI: http://michaeltorbert.com
     
    3131/**
    3232 * @package All-in-One-SEO-Pack
    33  * @version 2.2.4
     33 * @version 2.2.4
    3434 */
    3535
    3636global $aioseop_plugin_name;
    37 $aioseop_plugin_name = __( 'All in One SEO Pack', 'all_in_one_seo_pack' );
     37$aioseop_plugin_name = ;
    3838if ( ! defined( 'AIOSEOP_PLUGIN_NAME' ) )
    3939    define( 'AIOSEOP_PLUGIN_NAME', $aioseop_plugin_name );
    4040
    4141if ( ! defined( 'AIOSEOP_VERSION' ) )
    42     define( 'AIOSEOP_VERSION', '2.2.4' );
     42    define( 'AIOSEOP_VERSION', '2.2.4' );
    4343
    4444if ( ! defined( 'AIOSEOP_PLUGIN_DIR' ) ) {
Note: See TracChangeset for help on using the changeset viewer.