Plugin Directory

Changeset 1062522

Timestamp:
01/07/2015 09:40:19 PM (10 years ago)
Author:
pbaylies
Message:

Released 2.2.4.2, bug fixes for category meta descriptions, quick edit feature; enhancement for wp_head priority; tagged release.

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

Legend:

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

    r1058663 r1062522  
    13911391                add_action( 'aioseop_modules_wp_head', array( $this, 'aiosp_google_analytics' ) );
    13921392            add_filter( 'wp_list_pages', 'aioseop_list_pages' );
    1393             add_action( 'wp_head', array( $this, 'wp_head') );
     1393            add_action( 'wp_head', array( $this, 'wp_head') );
    13941394            add_action( 'template_redirect', array( $this, 'template_redirect' ), 0 );
    13951395            add_filter( 'wp_list_pages_excludes', 'aioseop_get_pages_start' );
     
    16071607        } else if ( is_single() || is_page() || is_attachment() || is_home() || $this->is_static_posts_page() ) {
    16081608            $description = $this->get_aioseop_description( $post );
     1609
     1610
     1611
     1612
    16091613        }
    16101614        if ( empty( $aioseop_options['aiosp_dont_truncate_descriptions'] ) ) {
  • all-in-one-seo-pack/tags/2.2.4.2/aioseop_functions.php

    r1049801 r1062522  
    118118        if ( !empty( $pagenow ) && ( $pagenow == 'upload.php' ) )
    119119            $post_type = 'attachment';
    120         elseif ( !isset( $_GET['post_type'] ) )
     120        elseif ( !isset( $_T['post_type'] ) )
    121121            $post_type = 'post';
    122122        else
    123             $post_type = $_GET['post_type'];
    124         add_action( 'admin_head', 'aioseop_admin_head' );
    125        
     123            $post_type = $_REQUEST['post_type'];
    126124        if( is_array( $aiosp_posttypecolumns ) && in_array( $post_type, $aiosp_posttypecolumns ) ) {
     125
    127126            if ( $post_type == 'page' )
    128127                add_filter( 'manage_pages_columns', 'aioseop_mrt_pcolumns' );
  • all-in-one-seo-pack/tags/2.2.4.2/all_in_one_seo_pack.php

    r1058663 r1062522  
    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.1
     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.1
     33 * @version 2.2.4.
    3434 */
    3535
     
    4040
    4141if ( ! defined( 'AIOSEOP_VERSION' ) )
    42     define( 'AIOSEOP_VERSION', '2.2.4.1' );
     42    define( 'AIOSEOP_VERSION', '2.2.4.' );
    4343
    4444if ( ! defined( 'AIOSEOP_PLUGIN_DIR' ) ) {
  • all-in-one-seo-pack/trunk/aioseop_class.php

    r1058663 r1062522  
    13911391                add_action( 'aioseop_modules_wp_head', array( $this, 'aiosp_google_analytics' ) );
    13921392            add_filter( 'wp_list_pages', 'aioseop_list_pages' );
    1393             add_action( 'wp_head', array( $this, 'wp_head') );
     1393            add_action( 'wp_head', array( $this, 'wp_head') );
    13941394            add_action( 'template_redirect', array( $this, 'template_redirect' ), 0 );
    13951395            add_filter( 'wp_list_pages_excludes', 'aioseop_get_pages_start' );
     
    16071607        } else if ( is_single() || is_page() || is_attachment() || is_home() || $this->is_static_posts_page() ) {
    16081608            $description = $this->get_aioseop_description( $post );
     1609
     1610
     1611
     1612
    16091613        }
    16101614        if ( empty( $aioseop_options['aiosp_dont_truncate_descriptions'] ) ) {
  • all-in-one-seo-pack/trunk/aioseop_functions.php

    r1049801 r1062522  
    118118        if ( !empty( $pagenow ) && ( $pagenow == 'upload.php' ) )
    119119            $post_type = 'attachment';
    120         elseif ( !isset( $_GET['post_type'] ) )
     120        elseif ( !isset( $_T['post_type'] ) )
    121121            $post_type = 'post';
    122122        else
    123             $post_type = $_GET['post_type'];
    124         add_action( 'admin_head', 'aioseop_admin_head' );
    125        
     123            $post_type = $_REQUEST['post_type'];
    126124        if( is_array( $aiosp_posttypecolumns ) && in_array( $post_type, $aiosp_posttypecolumns ) ) {
     125
    127126            if ( $post_type == 'page' )
    128127                add_filter( 'manage_pages_columns', 'aioseop_mrt_pcolumns' );
  • all-in-one-seo-pack/trunk/all_in_one_seo_pack.php

    r1058663 r1062522  
    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.1
     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.1
     33 * @version 2.2.4.
    3434 */
    3535
     
    4040
    4141if ( ! defined( 'AIOSEOP_VERSION' ) )
    42     define( 'AIOSEOP_VERSION', '2.2.4.1' );
     42    define( 'AIOSEOP_VERSION', '2.2.4.' );
    4343
    4444if ( ! defined( 'AIOSEOP_PLUGIN_DIR' ) ) {
Note: See TracChangeset for help on using the changeset viewer.