Changeset 2737708
- Timestamp:
- 06/05/2022 08:49:31 PM (4 years ago)
- Location:
- speedien
- Files:
-
- 4 deleted
- 4 edited
- 6 copied
-
tags/1.1.2 (copied) (copied from speedien/trunk)
-
tags/1.1.2/advanced-cache.php (deleted)
-
tags/1.1.2/readme.txt (copied) (copied from speedien/trunk/readme.txt) (2 diffs)
-
tags/1.1.2/speedien.php (copied) (copied from speedien/trunk/speedien.php) (1 diff)
-
tags/1.1.2/speedien_admin_bar.php (deleted)
-
tags/1.1.2/speedien_admin_notice.php (deleted)
-
tags/1.1.2/speedien_cache.php (copied) (copied from speedien/trunk/speedien_cache.php) (2 diffs)
-
tags/1.1.2/speedien_config.php (copied) (copied from speedien/trunk/speedien_config.php)
-
tags/1.1.2/speedien_purge_hooks.php (deleted)
-
tags/1.1.2/speedien_ui.php (copied) (copied from speedien/trunk/speedien_ui.php) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/speedien.php (modified) (1 diff)
-
trunk/speedien_cache.php (modified) (2 diffs)
-
trunk/speedien_ui.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
speedien/tags/1.1.2/readme.txt
r2685504 r2737708 3 3 Tags: pagespeed, cache, webperf, core web vitals, vitals 4 4 Requires at least: 4.6 5 Tested up to: 5.95 Tested up to: 6.0 6 6 Requires PHP: 5.6 7 Stable tag: 1.1. 17 Stable tag: 1.1.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 140 140 == Changelog == 141 141 142 = 1.1.2 - 5 Jun, 2022 = 143 - Bugfix to reduce error log warnings 144 - Added support for custom CDNs 145 142 146 = 1.1.1 - 25 Jan, 2022 = 143 147 - Bugfix for Elementor -
speedien/tags/1.1.2/speedien.php
r2685504 r2737708 33 33 file_put_contents($wp_config_file, $wp_config); 34 34 } 35 register_deactivation_hook( __FILE__, 'speedien_deactivate' );35 //register_deactivation_hook( __FILE__, 'speedien_deactivate' ); -
speedien/tags/1.1.2/speedien_cache.php
r2685504 r2737708 109 109 list($tag) = $matches; 110 110 111 $EXTRA = constant('wpspdn_EXTRA_ATTRS') ?:'';111 $EXTRA = ''; 112 112 113 113 $result = $tag; … … 176 176 update_option('speedien_cdnurl',$cdnurl); 177 177 } 178 179 if(defined('SPEEDIEN_CUSTOM_CDN')) 180 { 181 $cdnurl = 'nocdn'; 182 } 178 183 179 184 if($cdnurl!== 'nocdn') -
speedien/tags/1.1.2/speedien_ui.php
r2664756 r2737708 88 88 * Register our speedien_settings_init to the admin_init action hook. 89 89 */ 90 add_action('admin_init', 'speedien_settings_init');90 //add_action('admin_init', 'speedien_settings_init'); 91 91 92 92 function speedien_cache_init() -
speedien/trunk/readme.txt
r2685504 r2737708 3 3 Tags: pagespeed, cache, webperf, core web vitals, vitals 4 4 Requires at least: 4.6 5 Tested up to: 5.95 Tested up to: 6.0 6 6 Requires PHP: 5.6 7 Stable tag: 1.1. 17 Stable tag: 1.1.2 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 140 140 == Changelog == 141 141 142 = 1.1.2 - 5 Jun, 2022 = 143 - Bugfix to reduce error log warnings 144 - Added support for custom CDNs 145 142 146 = 1.1.1 - 25 Jan, 2022 = 143 147 - Bugfix for Elementor -
speedien/trunk/speedien.php
r2685504 r2737708 33 33 file_put_contents($wp_config_file, $wp_config); 34 34 } 35 register_deactivation_hook( __FILE__, 'speedien_deactivate' );35 //register_deactivation_hook( __FILE__, 'speedien_deactivate' ); -
speedien/trunk/speedien_cache.php
r2685504 r2737708 109 109 list($tag) = $matches; 110 110 111 $EXTRA = constant('wpspdn_EXTRA_ATTRS') ?:'';111 $EXTRA = ''; 112 112 113 113 $result = $tag; … … 176 176 update_option('speedien_cdnurl',$cdnurl); 177 177 } 178 179 if(defined('SPEEDIEN_CUSTOM_CDN')) 180 { 181 $cdnurl = 'nocdn'; 182 } 178 183 179 184 if($cdnurl!== 'nocdn') -
speedien/trunk/speedien_ui.php
r2664756 r2737708 88 88 * Register our speedien_settings_init to the admin_init action hook. 89 89 */ 90 add_action('admin_init', 'speedien_settings_init');90 //add_action('admin_init', 'speedien_settings_init'); 91 91 92 92 function speedien_cache_init()
Note: See TracChangeset
for help on using the changeset viewer.