• Resolved davewoodhall

    (@davewoodhall)


    Plugin version : 2.10.32
    File : /CF7DBPlugin.php
    Function: saveFormData($cf7)
    Line: 849

    $value = is_array($value) ? implode($value, ',') : $value;
    should be :
    $value = is_array($value) ? implode(', ', $value) : $value;

    The order of the implode function in inversed, causing a 500 Error.

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘Implode error in CF7DBPlugin.php’ is closed to new replies.