diff -r f507feede89a -r 09a1c134465b web/wp-content/plugins/all-in-one-seo-pack/all_in_one_seo_pack.php --- a/web/wp-content/plugins/all-in-one-seo-pack/all_in_one_seo_pack.php Wed Dec 19 12:35:13 2012 -0800 +++ b/web/wp-content/plugins/all-in-one-seo-pack/all_in_one_seo_pack.php Wed Dec 19 17:46:52 2012 -0800 @@ -3,7 +3,7 @@ Plugin Name: All in One SEO Pack Plugin URI: http://semperfiwebdesign.com Description: Out-of-the-box SEO for your WordPress blog. Options configuration panel | Upgrade to Pro Version | Donate | Support | Amazon Wishlist -Version: 1.6.15.2 +Version: 1.6.15.3 Author: Michael Torbert Author URI: http://michaeltorbert.com */ @@ -30,11 +30,11 @@ /** * @package All-in-One-SEO-Pack - * @version 1.6.15.2 + * @version 1.6.15.3 */ if ( ! defined( 'AIOSEOP_VERSION' ) ) - define( 'AIOSEOP_VERSION', '1.6.15.2' ); + define( 'AIOSEOP_VERSION', '1.6.15.3' ); if ( ! defined( 'AIOSEOP_PLUGIN_DIR' ) ) define( 'AIOSEOP_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); @@ -95,6 +95,8 @@ add_action( 'edit_post', array( $aiosp, 'post_meta_tags') ); add_action( 'publish_post', array( $aiosp, 'post_meta_tags') ); add_action( 'save_post', array( $aiosp, 'post_meta_tags') ); +add_action( 'add_attachment', array( $aiosp, 'post_meta_tags') ); +add_action( 'edit_attachment', array( $aiosp, 'post_meta_tags') ); add_action( 'edit_page_form', array( $aiosp, 'post_meta_tags') ); add_action( 'init', array( $aiosp, 'init' ), 5 ); add_action( 'wp_head', array( $aiosp, 'wp_head') );