Skip to content

Commit

Permalink
Fix PHP 7.2 compatibility (#771)
Browse files Browse the repository at this point in the history
  • Loading branch information
szepeviktor authored Dec 9, 2024
1 parent 511a4aa commit 6a1fada
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cloud.cls.php
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ public function init_qc_cli()
$msg = sprintf(
__('You need to set the %1$s first. Please use the command %2$s to set.', 'litespeed-cache'),
'`' . __('Server IP', 'litespeed-cache') . '`',
'`wp litespeed-option set server_ip __your_ip_value__`',
'`wp litespeed-option set server_ip __your_ip_value__`'
);
Admin_Display::error($msg);
return;
Expand Down Expand Up @@ -289,7 +289,7 @@ public function init_qc_cdn_cli($method, $cert = false, $key = false, $cf_token
$msg = sprintf(
__('You need to set the %1$s first. Please use the command %2$s to set.', 'litespeed-cache'),
'`' . __('Server IP', 'litespeed-cache') . '`',
'`wp litespeed-option set server_ip __your_ip_value__`',
'`wp litespeed-option set server_ip __your_ip_value__`'
);
Admin_Display::error($msg);
return;
Expand Down

0 comments on commit 6a1fada

Please sign in to comment.