Fatal error: Unsupported operand types in | Develop Site
Aparece el siguiente error en drupal Fatal error: Unsupported operand types in /home/directotio/public_html/propietario/includes/common.inc on line 1426
Español
Taxonomy upgrade extras:
Fatal error: Unsupported operand types in
Buscando en la red encontre esta solución:
*Bajo la linea function url($path = NULL, $options = array()) {
*hay que copiar agregar el siguiente codigo:
// Convert arguments and move on...
if (!is_array($options)) {
$options = array();
$args = func_get_args();
if (isset($args[1])) $options['query'] = $args[1];
if (isset($args[2])) $options['fragment'] = $args[2];
if (isset($args[3])) $options['absolute'] = $args[3];
}
*Luego bajo la linea function l($text, $path, $options = array()) {
*hay que agregar el siguiente código:
// Convert arguments and move on...
if (!is_array($options)) {
$options = array();
$args = func_get_args();
if (isset($args[2])) $options['attributes'] = $args[2];
if (isset($args[3])) $options['query'] = $args[3];
if (isset($args[4])) $options['fragment'] = $args[4];
if (isset($args[5])) $options['absolute'] = $args[5];
if (isset($args[6])) $options['html'] = $args[6];
}
En mi caso el problema se presentaba al listar los módulos como administrador