Title: Error PHP
Last modified: November 26, 2020

---

# Error PHP

 *  [Art Project Group](https://wordpress.org/support/users/artprojectgroup/)
 * (@artprojectgroup)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/error-php-17/)
 * 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.

 * ![](https://s.w.org/plugins/geopattern-icon/pagamastarde_5dbfe4.svg)
 * [Pagantis Payment Gateway for WooCommerce](https://wordpress.org/plugins/pagamastarde/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/pagamastarde/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/pagamastarde/)
 * [Active Topics](https://wordpress.org/support/plugin/pagamastarde/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/pagamastarde/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/pagamastarde/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [Art Project Group](https://wordpress.org/support/users/artprojectgroup/)
 * Last activity: [5 years, 6 months ago](https://wordpress.org/support/topic/error-php-17/)
 * Status: not resolved