I'm getting this error when I try to go to my site. The last thing I did was uninstall one blog extension and installed a new one.
Error: Parse error: syntax error, unexpected T_DOUBLE_ARROW in /home/mcflipp/public_html/vqmod/vqcache/vq2-catalog_controller_common_header.php on line 341
The code on that line is:
'href' => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id']),
'id' => $category['category_id']. '_' . $child['category_id'],
And the code that matches in the catalog/controller/common/header.php is:
$children_data[] = array(
'name' => $child['name'],
'href' => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id']),
'id' => $category['category_id']. '_' . $child['category_id'],
'children_level_2' => $children_data_level_2,
);
The syntax looks correct to me, so I'm not sure what needs to be changed. I appreciate any help!