Skip to content

Commit 0a73485

Browse files
author
Hai Zheng
committed
v7.4-rc1
1 parent 27975a5 commit 0a73485

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

litespeed-cache.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: LiteSpeed Cache
44
* Plugin URI: https://www.litespeedtech.com/products/cache-plugins/wordpress-acceleration
55
* Description: High-performance page caching and site optimization from LiteSpeed
6-
* Version: 7.4-b21
6+
* Version: 7.4-rc1
77
* Author: LiteSpeed Technologies
88
* Author URI: https://www.litespeedtech.com
99
* License: GPLv3
@@ -35,7 +35,7 @@
3535
return;
3636
}
3737

38-
! defined( 'LSCWP_V' ) && define( 'LSCWP_V', '7.4-b21' );
38+
! defined( 'LSCWP_V' ) && define( 'LSCWP_V', '7.4-rc1' );
3939

4040
! defined( 'LSCWP_CONTENT_DIR' ) && define( 'LSCWP_CONTENT_DIR', WP_CONTENT_DIR );
4141
! defined( 'LSCWP_DIR' ) && define( 'LSCWP_DIR', __DIR__ . '/' ); // Full absolute path '/var/www/html/***/wp-content/plugins/litespeed-cache/' or MU

src/cloud.cls.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1868,14 +1868,14 @@ public function is_from_cloud() {
18681868
* @since 4.2
18691869
*/
18701870
private function _update_ips() {
1871-
self::debug('Load remote Cloud IP list from ' . self::$_cloud_ips);
1871+
self::debug('Load remote Cloud IP list from ' . $this->_cloud_ips);
18721872
// Prevent multiple call in a short period
18731873
self::save_summary(array(
18741874
'ips_ts' => time(),
18751875
'ips_ts_runner' => time(),
18761876
));
18771877

1878-
$response = wp_safe_remote_get(self::$_cloud_ips . '?json');
1878+
$response = wp_safe_remote_get($this->_cloud_ips . '?json');
18791879
if (is_wp_error($response)) {
18801880
$error_message = $response->get_error_message();
18811881
self::debug('failed to get ip whitelist: ' . $error_message);

tpl/toolbox/beta_test.tpl.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
// List of available public versions
1616
$v_list = array(
17+
'7.4',
1718
'7.3.0.1',
1819
'7.3',
1920
'7.2',

0 commit comments

Comments
 (0)