Здравствуйте!
У меня друпал 7. При переходе на главную страницу выдаёт ошибку: Fatal error: [] operator not supported for strings in Z:\home\localhost\www\Progect1\includes\common.inc on line 2313
Ага, таже ошибка, появляется когда я включаю тему Marinelli
Вот в этом разделе:
* Formats an internal or external URL link as an HTML anchor tag.
* This function correctly handles aliased paths, and adds an 'active' class
* attribute to links that point to the current page (for theming), so all
* internal links output by modules should be generated by this function if
* possible.
Вот в этой фунции
function l($text, $path, array $options = array()) {
global $language_url;
static $use_theme = NULL;
// Append active class.
if (($path == $_GET['q'] || ($path == '' && drupal_is_front_page())) &&
(empty($options['language']) || $options['language']->language == $language_url->language)) {
$options['attributes']['class'][] = 'active';
}
В предпоследней строке и ошибка. Как я понимаю что-то связано с обработкой ссылок в теме на разных языках?.
Комментарии
у меня такое было на rc2. на новом вроде не наблюдается.
Ага, таже ошибка, появляется когда я включаю тему Marinelli
Вот в этом разделе:
* Formats an internal or external URL link as an HTML anchor tag.
* This function correctly handles aliased paths, and adds an 'active' class
* attribute to links that point to the current page (for theming), so all
* internal links output by modules should be generated by this function if
* possible.
Вот в этой фунции
function l($text, $path, array $options = array()) {
global $language_url;
static $use_theme = NULL;
// Merge in defaults.
$options += array(
'attributes' => array(),
'html' => FALSE,
);
// Append active class.
if (($path == $_GET['q'] || ($path == '' && drupal_is_front_page())) &&
(empty($options['language']) || $options['language']->language == $language_url->language)) {
$options['attributes']['class'][] = 'active';
}
В предпоследней строке и ошибка. Как я понимаю что-то связано с обработкой ссылок в теме на разных языках?.