• Resolved tiphiii

    (@tiphiii)


    Hello,

    I have noticed that I was not able to export only the confirmed members from the Import/Export Members backend page.
    I checked out the code of bft_import.html.php on line 23 and found that the checkbox for this option was missing a name:
    <input type="checkbox" checked="true">

    In bft-autoresponder.php, line 352, I found this condition:

    if(!empty($_POST['active'])) {
    	$active_sql=" AND status='1' ";
    }

    I then added the name “active” to the checkbox:
    <input type="checkbox" name="active" checked="true">

    After that, I was able to export only the confirmed members.
    Would be great if you could correct this bug in an update soon!

    • This topic was modified 6 years, 10 months ago by tiphiii. Reason: Added code formatting
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘“Export only confirmed members” not working, bug in code’ is closed to new replies.