I was fiddling around in here and must've messed something up, but I can't find the error on line 30
How does one count the lines anyway??
Here's the code:
<?php
/**
* @package languageDefines
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: index.php 3027 2006-02-13 17:15:51Z drbyte $
*/
define('TEXT_MAIN','');
// Showcase vs Store
if (STORE_STATUS == '0') {
define('TEXT_GREETING_GUEST', 'Welcome to KiiraBaby!<p>Returning customer? New customer? </br>Please <a href="%s">log in/register here.</a></p><p>Please pardon the dust as we add new inventory to our collection! <br/><br/><strong><a href="http://www.kiirababy.com/index.php?main_page=product_info&cPath=15_36&products_id=73">KAMA PUFFS</a></strong> have arrived from Estonia and will be available for purchase on Thursday!
</p><p><img src="images/Kiira July 004-1.jpg"></a></p><p><strong>All <a href= "/index.php?main_page=index&cPath=12_20">security blankets</a> are still on sale! Get these super soft blankets while you can! Add some matching prefolds for a great gift!</strong></p><p><!-- BEGIN Attachment and Natural Parenting TopSites CODE -->Click the links below to vote for Kiirababy as your favorite site!<br/><br/>Click up to ten times a day!<br/>
<a href="http://www.ultimatetopsites.com/bin/topsite.cgi?granolachicks&cat=coolsites&ID=22">
<img src="http://www.ultimatetopsites.com/bin/votepicture.art?granolachicks&cat=coolsites&ID=22" border=0></a><br/><br/>Click and rate once a day!<br/><!-- data banner code begin -->
<a href="http://indiemoms.gotop100.com/in.php?ref=183" target="_blank">
<img src="http://indiemoms.gotop100.com/lists/indiemoms/custombanners/68135.gif" border="0" width="125" height="125"> </a>
<!-- data banner code end --><a href="http://wahmtopsite.com/"><img src="http://wahmtopsite.com/images/125_wahmtopsite_vote_button.gif" alt="WAHM Topsite" border="0" /></a><a href="http://www.clothdiapersites.com/"><img src="http://www.clothdiapersites.com/button.php?u=kiirababy" alt="Top Cloth Diaper Sites" border="0" /></a>
</br>
<!-- END Attachment and Natural Parenting TopSites CODE -->');
} else {
define('TEXT_GREETING_GUEST', 'Welcome, please enjoy our online showcase.');
}
define('TEXT_GREETING_PERSONAL', 'Hello <span class="greetUser">%s</span>! Would you like to see our <a href="%s">newest additions</a>?</p><p><strong><a href="http://www.kiirababy.com/index.php?main_page=product_info&cPath=15_36&products_id=73">KAMA PUFFS</a></strong> have arrived from Estonia and will be available for purchase on Thursday!</p>
<p><img src="images/Kiira July 004-1.jpg"></a></p> <!-- BEGIN Attachment and Natural Parenting TopSites CODE --><p>Don't forget to click to vote for us as your favorite site!</br><br/>Click up to 10 times a day!<br/>
<a href="http://www.ultimatetopsites.com/bin/topsite.cgi?granolachicks&cat=coolsites&ID=22">
<img src="http://www.ultimatetopsites.com/bin/votepicture.art?granolachicks&cat=coolsites&ID=22" border=0></a><br/>Click and rate once a day!<br/><!-- data banner code begin -->
<a href="http://indiemoms.gotop100.com/in.php?ref=183" target="_blank">
<img src="http://indiemoms.gotop100.com/lists/indiemoms/custombanners/68135.gif" border="0" width="125" height="125"> </a>
<!-- data banner code end --><a href="http://wahmtopsite.com/"><img src="http://wahmtopsite.com/images/125_wahmtopsite_vote_button.gif" alt="WAHM Topsite" border="0" /></a><a href="http://www.clothdiapersites.com/"><img src="http://www.clothdiapersites.com/button.php?u=kiirababy" alt="Top Cloth Diaper Sites" border="0" /></a>
</br>
<!-- END Attachment and Natural Parenting TopSites CODE --><p><strong>All <a href= "/index.php?main_page=index&cPath=12_20">security blankets</a> are on sale! Get these super soft blankets while you can! Add some matching prefolds for a great gift!</strong></p>');
define('TEXT_INFORMATION', 'Define your main Index page copy here.');
//moved to english
//define('TABLE_HEADING_FEATURED_PRODUCTS','Featured Products');
//define('TABLE_HEADING_NEW_PRODUCTS', 'New Products For %s');
//define('TABLE_HEADING_UPCOMING_PRODUCTS', 'Upcoming Products');
//define('TABLE_HEADING_DATE_EXPECTED', 'Date Expected');
if ( ($category_depth == 'products') || (zen_check_url_get_terms()) ) {
// This section deals with product-listing page contents
define('HEADING_TITLE', 'Available Products');
define('TABLE_HEADING_IMAGE', 'Product Image');
define('TABLE_HEADING_MODEL', 'Model');
define('TABLE_HEADING_PRODUCTS', 'Product Name');
define('TABLE_HEADING_MANUFACTURER', 'Manufacturer');
define('TABLE_HEADING_QUANTITY', 'Quantity');
define('TABLE_HEADING_PRICE', 'Price');
define('TABLE_HEADING_WEIGHT', 'Weight');
define('TABLE_HEADING_BUY_NOW', 'Buy Now');
define('TEXT_NO_PRODUCTS', 'There are no products to list in this category.');
define('TEXT_NO_PRODUCTS2', 'There is no product available from this manufacturer.');
define('TEXT_NUMBER_OF_PRODUCTS', 'Number of Products: ');
define('TEXT_SHOW', 'Filter Results by:');
define('TEXT_BUY', 'Buy 1 \'');
define('TEXT_NOW', '\' now');
define('TEXT_ALL_CATEGORIES', 'All Categories');
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', '');
} 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', 'Congratulations! You have successfully installed your Zen Cart™ E-Commerce Solution.');
}
?>




