Topic: Question about Navlinks section
I'm trying to add "|" inbetween my navlinks.
It looks like this right now...
Index User list Search Profile Administration Messages Logout
I want it to look like this...
Index | User list | Search | Profile | Administration | Messages | Logout
I'm thinking that I have to edit functions.php because that is where the navlinks bar is created.
{
$links[] = '<li id="navindex"><a href="index.php">'.$lang_common['Index'].'</a>';
$links[] = '<li id="navuserlist"><a href="userlist.php">'.$lang_common['User list'].'</a>';
$links[] = '<li id="navsearch"><a href="search.php">'.$lang_common['Search'].'</a>';
$links[] = '<li id="navprofile"><a href="profile.php?id='.$pun_user['id'].'">'.$lang_common['Profile'].'</a>';
$links[] = '<li id="navadmin"><a href="admin_index.php">'.$lang_common['Admin'].'</a>';
require(PUN_ROOT.'include/pms/functions_navlinks.php');
$links[] = '<li id="navlogout"><a href="login.php?action=out&id='.$pun_user['id'].'&csrf_token='.sha1($pun_user['id'].sha1(get_remote_address())).'">'.$lang_common['Logout'].'</a>';
}
I'm not sure what to put in there to make the desired output. I've been trying to put in...
.$lang_topic['Link separator'].
But I can't figure out where to put it so that it works. That's what is used in the viewtopic page for the "report | delete | edit | quote" section.
Am I on the right track?