From 4fd31244454bca5f9b4bfb3bcb3b7eedc778d497 Mon Sep 17 00:00:00 2001 From: Chuck Scott Date: Tue, 13 Dec 2016 16:33:17 -0500 Subject: [PATCH] Uncommented two lines that are supposed to delete the image data WordPress options when import step 2 is started. --- models/admin/management/import/memberImages.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/admin/management/import/memberImages.php b/models/admin/management/import/memberImages.php index 95be6fe0..b63119c4 100644 --- a/models/admin/management/import/memberImages.php +++ b/models/admin/management/import/memberImages.php @@ -13,8 +13,8 @@ $refTable = $this->config['ref_type_table'][$refType]; $imageBaseURL = get_option( 'glm-member-db-import-imageurl', false ); $image = get_option( 'glm-member-db-import-image', false ); -//delete_option( 'glm-member-db-import-imageurl', false ); -//delete_option( 'glm-member-db-import-image', false ); +delete_option( 'glm-member-db-import-imageurl', false ); +delete_option( 'glm-member-db-import-image', false ); // If we have image URLs if ($image != false) { -- 2.17.1