Version Description
fixes: category capitalization fixes
enhancements: futureproofing the performance function for PHP7,8 futureproofing the open graph and social meta function for PHP7,8 futureproofing the file editor function for PHP7,8 futureproofing the import-export function for PHP7,8
Download this release
Release Info
| Developer | hallsofmontezuma |
| Plugin | |
| Version | 2.2.7.5 |
| Comparing to | |
| See all releases | |
Code changes from version 2.2.7.4 to 2.2.7.5
- aioseop_class.php +1 -0
- aioseop_file_editor.php +1 -1
- aioseop_importer_exporter.php +1 -1
- aioseop_opengraph.php +1 -1
- aioseop_performance.php +1 -1
- all_in_one_seo_pack.php +3 -3
- readme.txt +11 -3
aioseop_class.php
CHANGED
|
@@ -2692,6 +2692,7 @@ EOF;
|
|
| 2692 |
}
|
| 2693 |
|
| 2694 |
function get_tax_name( $tax ) {
|
|
|
|
| 2695 |
$name = '';
|
| 2696 |
if ( empty( $name ) ) $name = single_term_title( '', false );
|
| 2697 |
if ( ( $tax == 'category' ) && ( !empty( $aioseop_options['aiosp_cap_cats'] ) ) )
|
| 2692 |
}
|
| 2693 |
|
| 2694 |
function get_tax_name( $tax ) {
|
| 2695 |
+
global $aioseop_options;
|
| 2696 |
$name = '';
|
| 2697 |
if ( empty( $name ) ) $name = single_term_title( '', false );
|
| 2698 |
if ( ( $tax == 'category' ) && ( !empty( $aioseop_options['aiosp_cap_cats'] ) ) )
|
aioseop_file_editor.php
CHANGED
|
@@ -8,7 +8,7 @@
|
|
| 8 |
if ( !class_exists( 'All_in_One_SEO_Pack_File_Editor' ) ) {
|
| 9 |
class All_in_One_SEO_Pack_File_Editor extends All_in_One_SEO_Pack_Module {
|
| 10 |
|
| 11 |
-
function
|
| 12 |
$this->name = __('File Editor', 'all-in-one-seo-pack'); // Human-readable name of the plugin
|
| 13 |
$this->prefix = 'aiosp_file_editor_'; // option prefix
|
| 14 |
$this->file = __FILE__; // the current file
|
| 8 |
if ( !class_exists( 'All_in_One_SEO_Pack_File_Editor' ) ) {
|
| 9 |
class All_in_One_SEO_Pack_File_Editor extends All_in_One_SEO_Pack_Module {
|
| 10 |
|
| 11 |
+
function __construct( ) {
|
| 12 |
$this->name = __('File Editor', 'all-in-one-seo-pack'); // Human-readable name of the plugin
|
| 13 |
$this->prefix = 'aiosp_file_editor_'; // option prefix
|
| 14 |
$this->file = __FILE__; // the current file
|
aioseop_importer_exporter.php
CHANGED
|
@@ -8,7 +8,7 @@
|
|
| 8 |
if ( !class_exists( 'All_in_One_SEO_Pack_Importer_Exporter' ) ) {
|
| 9 |
class All_in_One_SEO_Pack_Importer_Exporter extends All_in_One_SEO_Pack_Module {
|
| 10 |
|
| 11 |
-
function
|
| 12 |
$this->name = __( 'Importer & Exporter', 'all-in-one-seo-pack' ); // Human-readable name of the module
|
| 13 |
$this->prefix = 'aiosp_importer_exporter_'; // option prefix
|
| 14 |
$this->file = __FILE__;
|
| 8 |
if ( !class_exists( 'All_in_One_SEO_Pack_Importer_Exporter' ) ) {
|
| 9 |
class All_in_One_SEO_Pack_Importer_Exporter extends All_in_One_SEO_Pack_Module {
|
| 10 |
|
| 11 |
+
function __construct( ) {
|
| 12 |
$this->name = __( 'Importer & Exporter', 'all-in-one-seo-pack' ); // Human-readable name of the module
|
| 13 |
$this->prefix = 'aiosp_importer_exporter_'; // option prefix
|
| 14 |
$this->file = __FILE__;
|
aioseop_opengraph.php
CHANGED
|
@@ -10,7 +10,7 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Opengraph' ) ) {
|
|
| 10 |
var $fb_object_types;
|
| 11 |
var $type;
|
| 12 |
|
| 13 |
-
function
|
| 14 |
$this->name = __('Social Meta', 'all-in-one-seo-pack'); // Human-readable name of the plugin
|
| 15 |
$this->prefix = 'aiosp_opengraph_'; // option prefix
|
| 16 |
$this->file = __FILE__; // the current file
|
| 10 |
var $fb_object_types;
|
| 11 |
var $type;
|
| 12 |
|
| 13 |
+
function __construct( ) {
|
| 14 |
$this->name = __('Social Meta', 'all-in-one-seo-pack'); // Human-readable name of the plugin
|
| 15 |
$this->prefix = 'aiosp_opengraph_'; // option prefix
|
| 16 |
$this->file = __FILE__; // the current file
|
aioseop_performance.php
CHANGED
|
@@ -10,7 +10,7 @@ if ( !class_exists( 'All_in_One_SEO_Pack_Performance' ) ) {
|
|
| 10 |
|
| 11 |
protected $module_info = Array( );
|
| 12 |
|
| 13 |
-
function
|
| 14 |
$this->name = __('Performance', 'all-in-one-seo-pack'); // Human-readable name of the plugin
|
| 15 |
$this->prefix = 'aiosp_performance_'; // option prefix
|
| 16 |
$this->file = __FILE__; // the current file
|
| 10 |
|
| 11 |
protected $module_info = Array( );
|
| 12 |
|
| 13 |
+
function __construct( $mod ) {
|
| 14 |
$this->name = __('Performance', 'all-in-one-seo-pack'); // Human-readable name of the plugin
|
| 15 |
$this->prefix = 'aiosp_performance_'; // option prefix
|
| 16 |
$this->file = __FILE__; // the current file
|
all_in_one_seo_pack.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: All In One SEO Pack
|
| 4 |
Plugin URI: http://semperfiwebdesign.com
|
| 5 |
Description: 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¤cy_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.7.
|
| 7 |
Author: Michael Torbert
|
| 8 |
Author URI: http://michaeltorbert.com
|
| 9 |
Text Domain: all-in-one-seo-pack
|
|
@@ -31,7 +31,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
| 31 |
|
| 32 |
/**
|
| 33 |
* @package All-in-One-SEO-Pack
|
| 34 |
-
* @version 2.2.7.
|
| 35 |
*/
|
| 36 |
|
| 37 |
if ( ! defined( 'ABSPATH' ) ) return;
|
|
@@ -42,7 +42,7 @@ if ( ! defined( 'AIOSEOP_PLUGIN_NAME' ) )
|
|
| 42 |
define( 'AIOSEOP_PLUGIN_NAME', $aioseop_plugin_name );
|
| 43 |
|
| 44 |
if ( ! defined( 'AIOSEOP_VERSION' ) )
|
| 45 |
-
define( 'AIOSEOP_VERSION', '2.2.7.
|
| 46 |
|
| 47 |
if ( ! defined( 'AIOSEOP_PLUGIN_DIR' ) ) {
|
| 48 |
define( 'AIOSEOP_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
| 3 |
Plugin Name: All In One SEO Pack
|
| 4 |
Plugin URI: http://semperfiwebdesign.com
|
| 5 |
Description: 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¤cy_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.7.5
|
| 7 |
Author: Michael Torbert
|
| 8 |
Author URI: http://michaeltorbert.com
|
| 9 |
Text Domain: all-in-one-seo-pack
|
| 31 |
|
| 32 |
/**
|
| 33 |
* @package All-in-One-SEO-Pack
|
| 34 |
+
* @version 2.2.7.5
|
| 35 |
*/
|
| 36 |
|
| 37 |
if ( ! defined( 'ABSPATH' ) ) return;
|
| 42 |
define( 'AIOSEOP_PLUGIN_NAME', $aioseop_plugin_name );
|
| 43 |
|
| 44 |
if ( ! defined( 'AIOSEOP_VERSION' ) )
|
| 45 |
+
define( 'AIOSEOP_VERSION', '2.2.7.5' );
|
| 46 |
|
| 47 |
if ( ! defined( 'AIOSEOP_PLUGIN_DIR' ) ) {
|
| 48 |
define( 'AIOSEOP_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtor
|
|
| 4 |
Tags: seo, all in one seo pack, search engine optimization, google
|
| 5 |
Requires at least: 3.3
|
| 6 |
Tested up to: 4.4
|
| 7 |
-
Stable tag: 2.2.7.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -35,7 +35,6 @@ All in One SEO Pack **Optimizes** your WordPress blog for SEO (**Search Engine O
|
|
| 35 |
* You can override any title and set any META description and any META keywords you want.
|
| 36 |
* Compatibility with many other plugins
|
| 37 |
|
| 38 |
-
**If upgrading, please back up your database first!**
|
| 39 |
|
| 40 |
Follow me on Twitter to keep up with the latest updates [Michael
|
| 41 |
Torbert](http://twitter.com/michaeltorbert/)
|
|
@@ -54,7 +53,6 @@ the top-level folder. Don't just upload all the php files and put them in `/wp-c
|
|
| 54 |
fc
|
| 55 |
If you have to upgrade manually simply repeat the installation steps and re-enable the plugin.
|
| 56 |
|
| 57 |
-
**If upgrading, please back up your database first!**
|
| 58 |
|
| 59 |
== Changelog ==
|
| 60 |
|
|
@@ -69,6 +67,16 @@ Please read these **[FAQs](http://semperfiwebdesign.com/documentation/all-in-one
|
|
| 69 |
|
| 70 |
== Upgrade Notice ==
|
| 71 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
= 2.2.7.4 =
|
| 73 |
|
| 74 |
-Update for WordPress 4.4
|
| 4 |
Tags: seo, all in one seo pack, search engine optimization, google
|
| 5 |
Requires at least: 3.3
|
| 6 |
Tested up to: 4.4
|
| 7 |
+
Stable tag: 2.2.7.5
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 35 |
* You can override any title and set any META description and any META keywords you want.
|
| 36 |
* Compatibility with many other plugins
|
| 37 |
|
|
|
|
| 38 |
|
| 39 |
Follow me on Twitter to keep up with the latest updates [Michael
|
| 40 |
Torbert](http://twitter.com/michaeltorbert/)
|
| 53 |
fc
|
| 54 |
If you have to upgrade manually simply repeat the installation steps and re-enable the plugin.
|
| 55 |
|
|
|
|
| 56 |
|
| 57 |
== Changelog ==
|
| 58 |
|
| 67 |
|
| 68 |
== Upgrade Notice ==
|
| 69 |
|
| 70 |
+
= 2.2.7.5 =
|
| 71 |
+
fixes:
|
| 72 |
+
category capitalization fixes
|
| 73 |
+
|
| 74 |
+
enhancements:
|
| 75 |
+
futureproofing the performance function for PHP7,8
|
| 76 |
+
futureproofing the open graph and social meta function for PHP7,8
|
| 77 |
+
futureproofing the file editor function for PHP7,8
|
| 78 |
+
futureproofing the import-export function for PHP7,8
|
| 79 |
+
|
| 80 |
= 2.2.7.4 =
|
| 81 |
|
| 82 |
-Update for WordPress 4.4
|
