diff --git a/wp-ffpc-acache.php b/wp-ffpc-acache.php index c07c004..4f6d2d9 100644 --- a/wp-ffpc-acache.php +++ b/wp-ffpc-acache.php @@ -150,7 +150,7 @@ if ( $wp_ffpc_backend->status() === false ) { include_once ('backends/mobile-detect.php'); $mobile_detect = new Mobile_Detect; /* verify if mobile device (phones or tablets). */ -$wp_ffpc_keys = ($mobile_detect->isMobile() ? +$wp_ffpc_keys = $mobile_detect->isMobile() ? array ( 'meta' => $wp_ffpc_config['prefix_meta_mobile'], 'data' => $wp_ffpc_config['prefix_data_mobile'] ) : array ( 'meta' => $wp_ffpc_config['prefix_meta'], 'data' => $wp_ffpc_config['prefix_data']); diff --git a/wp-ffpc-class.php b/wp-ffpc-class.php index 7cf4bc4..d664eda 100644 --- a/wp-ffpc-class.php +++ b/wp-ffpc-class.php @@ -713,7 +713,8 @@ class WP_FFPC extends WP_FFPC_ABSTRACT {