Download & Extend

Fatal error: Unsupported operand types in .../includes/common.inc on line 1275

Project:reCAPTCHA
Version:6.x-1.x-dev
Component:reCAPTCHA Captcha
Category:support request
Priority:normal
Assigned:Unassigned
Status:closed (fixed)

Issue Summary

I have been getting this error whenever a user tries to register - does anyone know why this is happening? Thanks in advance.

Fatal error: Unsupported operand types in .../includes/common.inc on line 1275

Comments

#1

inset these

  if(!is_array($options))
  {
  $options = array();
  }

lines, it will help you...

  // Merge in defaults.
 
  if(!is_array($options))
  {
  $options = array();
  }
 
  $options += array(
    'fragment' => '',
    'query' => '',
    'absolute' => FALSE,
    'alias' => FALSE,
    'prefix' => ''
  );

#2

Great! That fixes it. Thank you so much!! Have a great day!

#3

Status:active» fixed

#4

Status:fixed» closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

nobody click here