nosrak:
> OK so this is probably a lame question but
> how can I make the tab for CM in phproject
> say something other than start?
Hi. To change any word in the CMS module just edit the language files. The language files are in the directory /cm/lang/. The English language file is named en.inc.php, and the variable to change is cm_text["root"].
So, for example, you can change this line (in the en.inc.php file) from:
Code:
$cm_text["root"] = "Start";
to
Code:
$cm_text["root"] = "Content";
Now the Start tab will become the Content tab.
Regards,
Mario A. Valdez-Ramirez.