From 80776814785f3adc53c526b4eccbc28f29d58324 Mon Sep 17 00:00:00 2001 From: Glaydston Veloso Date: Wed, 9 Nov 2016 13:10:08 +0100 Subject: [PATCH] Fix the dt close tag --- wp-ffpc-acache.php | 2 +- wp-ffpc-class.php | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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 {
- + +