From: Chuck Scott Date: Tue, 13 Dec 2016 21:33:17 +0000 (-0500) Subject: Uncommented two lines that are supposed to delete the image data WordPress options... X-Git-Tag: v2.8.5^2~11 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=4fd31244454bca5f9b4bfb3bcb3b7eedc778d497;p=WP-Plugins%2Fglm-member-db.git Uncommented two lines that are supposed to delete the image data WordPress options when import step 2 is started. --- 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) {