Nicolas Coolman

Forum Replies Created

Viewing 4 posts - 26 through 29 (of 29 total)
Jun 3, 2019 at 7:33 am
#97597

Hi,

Je viens de corriger la fonction php, en ajoutant une condition supplémentaire.
if (is_array($value) || is_object($value))

Tout est OK maintenant

Regards

Jun 3, 2019 at 6:59 am
#97592

Hi,

The error comes from the PHP function wpdm_sanitize_array

function wpdm_sanitize_array($array){
    foreach ($array as $key ► &$value){
        if(is_array($value))
            wpdm_sanitize_array($value);
        else {
            $value = strstr($value, "\n")?wp_kses($value, array('strong' ► array(), 'b' ► array(), 'br' ► array(), 'p' ► array(), 'hr' ► array(), 'a' ► array('href' ► array(), 'title' ► array()))):sanitize_text_field($value);
        }
        $array[$key] = &$value;
    }
    return $array;
}

Thks

Regards

Jun 2, 2019 at 1:49 pm
#97558

Hi,

A Google search tells me that I’m not the only one in this case

Roadsouth

Aug 31, 2018 at 3:24 pm
#86679

Hi,

Its worked perfectly, I found all my data and I was able to enter my license key.

Thank you

Regards

Viewing 4 posts - 26 through 29 (of 29 total)