I had just installed this frontstore software on web server and was replacing the headline content only in the index.php as what I show in bold text
define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers');
} elseif ($category_depth == 'top') {
// This section deals with the "home" page at the top level with no options/products selected
/*Replace this text with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
define('HEADING_TITLE', 'Team ZR-1 Corvette Racers LLC');
} elseif ($category_depth == 'nested') {
// This section deals with displaying a subcategory
/*Replace this line with the headline you would like for your shop. For example: 'Welcome to My SHOP!'*/
define('HEADING_TITLE', 'Team ZR-1 Corvette Racer's LLC');
}
?>
Then went to the online catalog and now fails with :
Parse error: syntax error, unexpected T_STRING in /home/teamzron/public_html/fstore/includes/languages/english/index.php on line 56
What is wrong, something else changed other then the title content I only changed ?
What is the T_string ?
Thanks



