Deprecated: Required parameter $customer_email follows optional parameter…
-
Line 358 should be changed from:
public function create_conversation_by_email( $subject, $message, $customer_id = 0, $customer_email, $filedata = '', $user_id = 0 ) {
to
public function create_conversation_by_email( $subject, $message, $customer_id, $customer_email, $filedata, $user_id ) {
You cannot call this function without declaring all of the params so it would have no effect on its functionality.
Without this fix, PHP 8.0 will throw this warning which tends to have a nasty impact on the layout.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Deprecated: Required parameter $customer_email follows optional parameter…’ is closed to new replies.