Skip to content

Commit

Permalink
Release 2.7.0 (#826)
Browse files Browse the repository at this point in the history
  • Loading branch information
cssjoe authored Feb 20, 2024
1 parent db12453 commit ef99def
Show file tree
Hide file tree
Showing 12 changed files with 673 additions and 814 deletions.
2 changes: 1 addition & 1 deletion Cdn_LimeLight_Popup.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@



class Cdnfsd_LimeLight_Popup {
class Cdn_LimeLight_Popup {
static public function w3tc_ajax() {
$o = new Cdnfsd_LimeLight_Popup();

Expand Down
2 changes: 1 addition & 1 deletion UserExperience_LazyLoad_Mutator.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public function style_offload_background( $matches ) {
preg_match( '~background(-image)?:\s*(url\([^>]+\))~is', $v, $url_match );
$v = preg_replace( '~background(-image)?:\s*url\([^>]+\)[;]?\s*~is', '', $v );

return $v1 . $v2 . $v . $quote . ' data-bg=' . $quote . $url_match[2] . $quote;
return $v1 . $v2 . $v . $quote . ' data-bg=' . $quote . ( isset( $url_match[2] ) ? $url_match[2] : '' ) . $quote;
}


Expand Down
123 changes: 63 additions & 60 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions inc/options/dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@

require W3TC_INC_DIR . '/options/common/header.php';
?>

<form id="w3tc_dashboard" action="admin.php?page=<?php echo esc_attr( $this->_page ); ?>" method="post">
<div class="w3tc_dashboard_flush_container">
<span><?php esc_html_e( 'Flush caches with ', 'w3-total-cache' ); ?></span>
<div class="w3tc-button-control-container">
<?php Util_Ui::print_flush_split_button(); ?>
</div>
</div>
</form>

<form id="w3tc_dashboard" action="admin.php?page=<?php echo esc_attr( $this->_page ); ?>" method="post">
<?php
echo wp_kses(
Expand Down
Loading

0 comments on commit ef99def

Please sign in to comment.