chernovalov: Комментарии

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

18 марта 2012 в 20:09

Заменил весь модуль, результат тот-же:
Notice: Undefined index: voc в функции theme_tagadelic_weighted() (строка 334 в файле /home/users2/c/sites/all/modules/tagadelic/tagadelic.module).
Notice: Trying to get property of non-object в функции theme_tagadelic_weighted() (строка 334 в файле /home/users2/c/sites/all/modules/tagadelic/tagadelic.module).

18 марта 2012 в 14:29

Вот эта функция:
function theme_tagadelic_weighted(array $vars) {
$terms = $vars['terms'];
$output = '';

foreach ($terms as $term) {
$output .= l($term->name, 'taxonomy/term/' . $term->tid, array(
'attributes' => array(
'class' => array("tagadelic", "level" . $term->weight),
'rel' => 'tag',
'title' => $term->description,
)
)
) . " \n";
}