Nicolas Coolman

Forum Replies Created

Viewing 4 posts - 26 through 29 (of 29 total)
in reply to: Warning wpdm-functions.php on line 2387 #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

in reply to: Warning wpdm-functions.php on line 2387 #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

in reply to: Warning wpdm-functions.php on line 2387 #97558

Hi,

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

Roadsouth

in reply to: WordPress refuses to install v4.7.7. #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)