Additionally, the SINGLE QUOTES that encase the text labels/strings may have been deleted too.
Here's the first few lines of code in includes\languages\english\create_account_php
PHP 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: create_account.php 3027 2006-02-13 17:15:51Z drbyte $
*/
define('NAVBAR_TITLE', 'Create an Account');
define('HEADING_TITLE', 'My Account Information');
define('TEXT_ORIGIN_LOGIN', '<strong class="note">NOTE:</strong> If you already have an account with us, please login at the <a href="%s">login page</a>.');
// greeting salutation
define('EMAIL_SUBJECT', 'Welcome to ' . STORE_NAME);
define('EMAIL_GREET_MR', 'Dear Mr. %s,' . "\n\n");
define('EMAIL_GREET_MS', 'Dear Ms. %s,' . "\n\n");
define('EMAIL_GREET_NONE', 'Dear %s' . "\n\n");
If you DELETE a label:-
define('NAVBAR_TITLE', 'Create an Account');
Then make sure the single quotes are retained.
define('NAVBAR_TITLE', '');
To make sure the integrity of your create_account.php file is intact, use WINMERGE to compare you copy with an original file.