Changeset 2013735
- Timestamp:
- 01/16/2019 09:34:06 PM (7 years ago)
- Location:
- php-compatibility-checker/trunk
- Files:
-
- 4 edited
-
php52/vendor/autoload_52.php (modified) (1 diff)
-
php52/vendor/composer/autoload_real_52.php (modified) (2 diffs)
-
src/wpephpcompat.php (modified) (1 diff)
-
wpengine-phpcompat.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
php-compatibility-checker/trunk/php52/vendor/autoload_52.php
r1914408 r2013735 5 5 require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php'; 6 6 7 return ComposerAutoloaderInit ae6f84bfc58da458e326cb01eed119a8::getLoader();7 return ComposerAutoloaderInit9682a282f546102ba01ce755bc036ffe::getLoader(); -
php-compatibility-checker/trunk/php52/vendor/composer/autoload_real_52.php
r1914408 r2013735 3 3 // autoload_real_52.php generated by xrstf/composer-php52 4 4 5 class ComposerAutoloaderInit ae6f84bfc58da458e326cb01eed119a8{5 class ComposerAutoloaderInit9682a282f546102ba01ce755bc036ffe { 6 6 private static $loader; 7 7 … … 20 20 } 21 21 22 spl_autoload_register(array('ComposerAutoloaderInit ae6f84bfc58da458e326cb01eed119a8', 'loadClassLoader'), true /*, true */);22 spl_autoload_register(array('ComposerAutoloaderInit9682a282f546102ba01ce755bc036ffe', 'loadClassLoader'), true /*, true */); 23 23 self::$loader = $loader = new xrstf_Composer52_ClassLoader(); 24 spl_autoload_unregister(array('ComposerAutoloaderInit ae6f84bfc58da458e326cb01eed119a8', 'loadClassLoader'));24 spl_autoload_unregister(array('ComposerAutoloaderInit9682a282f546102ba01ce755bc036ffe', 'loadClassLoader')); 25 25 26 26 $vendorDir = dirname(dirname(__FILE__)); -
php-compatibility-checker/trunk/src/wpephpcompat.php
r1914408 r2013735 93 93 '*/iwp-client/*' => '7.0', // https://wordpress.org/support/topic/iwp-client-and-php-7-compatibility/ 94 94 '*/health-check/*' => '7.2', // https://github.com/wpengine/phpcompat/issues/179 95 '*/genesis/*' => '7.2', // https://github.com/wpengine/phpcompat/issues/127 96 '*/wpmudev-updates/*' => '7.3', // https://github.com/wpengine/phpcompat/issues/178 95 97 ); 96 98 -
php-compatibility-checker/trunk/wpengine-phpcompat.php
r1914408 r2013735 11 11 * Description: Make sure your plugins and themes are compatible with newer PHP versions. 12 12 * Author: WP Engine 13 * Version: 1.4. 613 * Version: 1.4.7 14 14 * Author URI: https://wpengine.com 15 15 * Text Domain: php-compatibility-checker … … 75 75 public static function init() { 76 76 $instance = self::instance(); 77 78 // Load textdomain. 79 add_action( 'init', array( $instance, 'load_textdomain' ) ); 77 80 78 81 // Build our tools page. … … 309 312 'has_archive' => false, 310 313 ) ); 314 } 315 316 /** 317 * Loads textdomain for WP < 4.6 translation support. 318 * 319 * @since 1.4.7 320 * 321 * @action admin_init 322 */ 323 public function load_textdomain() { 324 load_plugin_textdomain( 'php-compatibility-checker' ); 311 325 } 312 326
Note: See TracChangeset
for help on using the changeset viewer.