warning: Creating default object from empty value in dp/modules/taxonomy/taxonomy.pages.inc on line 33.

By estis , 21 5月, 2015

dp/modules/taxonomy/taxonomy.pages.inc の33行目

$current->tid = $tids[0];

の前に

$current = new stdClass;

を追記で、修正。

Comments