• Art Project Group

    (@artprojectgroup)


    Error:

    PHP Deprecated: Unparenthesized a ? b : c ? d : e is deprecated. Use either (a ? b : c) ? d : e or a ? b : (c ? d : e) in /home2/ensu3lofirme/public_html/wp-content/plugins/pagamastarde/controllers/paymentController.php on line 329

    Reemplazad las líneas 329, 330 y 331:

                    in_array(strtolower($this->language), $allowedCountries) ? $this->language :
                     in_array(strtolower($shippingAddress['country']), $allowedCountries) ? $shippingAddress['country'] :
                     in_array(strtolower($billingAddress['country']), $allowedCountries) ? $billingAddress['country'] : null;

    Por esto:

                    in_array(strtolower($this->language), $allowedCountries) ? $this->language :
                    ( in_array(strtolower($shippingAddress['country']), $allowedCountries) ? $shippingAddress['country'] :
                    ( in_array(strtolower($billingAddress['country']), $allowedCountries) ? $billingAddress['country'] : null ) );

    Muchas gracias de antemano.

    Un saludo.

  • The topic ‘Error PHP’ is closed to new replies.