Topic: rename navlink

In the navigation I wanted to rename one of the navlink from "Index" to "Home".


Its in functions.php line 235 calls on $links[] = '<li id="navindex"><a href="index.php">'.$lang_common['Index'].'</a>';

Not sure how to change the label.

Any help would be great.

Thanks

2

Re: rename navlink

Change it in the language file common.php not in functions.php.
Just change 'Index' => 'Index', to 'Index' => 'Home',

Re: rename navlink

thanks smile