hmm, I never thought of that. Did you try and see if there was any language variable for your company name? That's the first thing I did and then searched for the variable within the xcart directory using dreamweaver and found it in the auth.php file, changed it and lucked out.
I compared the 2 versions together and see there's an extra line on 4.1, it looks like it points to the language and if nothing is there then it uses the company name in options, I'm thinking if you play in this area and try a few things something should work. I was hoping I coudl help you out but its pretty hard when I don't have that version runnign so I can't test it.
This is how 4.1.2 looks.
Quote:
$lbl_site_name = func_get_langvar_by_name("lbl_home", "", false, true);
$location = array();
$location[] = array((!empty($lbl_site_name) ? $lbl_site_name : $config["Company"]["company_name"]), "home.php");
|
The bottom 2 lines should be 137 & 138 in yours. I think in the end you want to try and change line 138 to call on a language label.
Good luck!