andresabella
Forum Replies Created
-
Fatal error: Uncaught Error: Call to a member function post() on null in /…/wp-content/plugins/booking-system/dopbs.php:1123 Stack trace: #0 /…/wp-content/plugins/booking-system/dopbs.php(1948): DOPBSP->__construct() #1 /…/wp-settings.php(377): include_once(‘…’) #2 /…/wp-config.php(81): require_once(‘…’) #3 /…/wp-load.php(37): require_once(‘…’) #4 /…/wp-admin/admin.php(34): require_once(‘…’) #5 /…/wp-admin/update-core.php(10): require_once(‘…’) #6 {main} thrown in /…/wp-content/plugins/booking-system/dopbs.php on line 1123
(changed internal route to /…/ )
No, no risk at all. It’s just a “hey, don’t show “deprecated” messages”.
BTW, as long as people told me (and I just copypaste):
“” It’s a deprecated warning, not an error. It’s telling you to make sure that the developer knows that there is a deprecated language construct in the code that needs to be solved before it will run in PHP 8.0. “”
@oknimen if you want it to stop displaying, edit your php.ini so it doesn’t show deprecated messages:
search for error_reporting, and add:
error_reporting(E_ALL ^ E_DEPRECATED);
It worked for me (until this plugin gets updated and/or fixed)
Same here:
Deprecated: Unparenthesized
a ? b : c ? d : eis deprecated. Use either(a ? b : c) ? d : eora ? b : (c ? d : e)in /(…)/wp-content/plugins/booking-system/includes/calendars/class-backend-calendar-schedule.php on line 621Any news on how to solve this annoying message?