Ошибка при входе одно юзера Fatal error: Unsupported operand types in /***/includes/common.inc on line 1265

Главные вкладки

Комментарии

Аватар пользователя iNFerNo iNFerNo 29 апреля 2011 в 14:49
function l($text, $path, $options = array()) {
  global $language;

  // Merge in defaults.
  $options += array(
      'attributes' => array(),
      'html' => FALSE,
    );                          ------------- на эту строчку ошибку выдает

  // Append active class.
  if (($path == $_GET['q'] || ($path == '<front>' && drupal_is_front_page())) &&
      (empty($options['language']) || $options['language']->language == $language->language)) {
    if (isset($options['attributes']['class'])) {
      $options['attributes']['class'] .= ' active';
    }
    else {
      $options['attributes']['class'] = 'active';
    }
  }