If you are using a theme (not the default one), you should be looking at
themes/__your_theme__/views/default.master.php
The relevant code should be:
if ($Session->IsValid()) {
$this->Menu->AddLink('Discussion', T('Start a New Discussion'), '/post/discussion', array('Garden.SignIn.Allow'), array('class' => 'UserNotifications'));
}
Comments
themes/__your_theme__/views/default.master.php
The relevant code should be:
if ($Session->IsValid()) { $this->Menu->AddLink('Discussion', T('Start a New Discussion'), '/post/discussion', array('Garden.SignIn.Allow'), array('class' => 'UserNotifications')); }
/cd