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

bboldi’s picture

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' => ''
  );

ramper’s picture

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

the_g_bomb’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

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