add a return to site link in account options

This commit is contained in:
Colin Kuskie 2008-09-04 18:26:32 +00:00
parent 6f457bf78b
commit 901457bbb2
2 changed files with 7 additions and 0 deletions

View file

@ -85,6 +85,12 @@ TODO: DOCUMENT ME
$hash{'options.display'} = '<a href="'.$session->url->page('op=auth;method=deactivateAccount').'">'.$i18n->get(65).'</a>';
push(@array,\%hash);
}
{ ##Return to site link
my %hash;
$hash{'options.display'} = '<a href="'.$session->url->getBackToSiteURL.'">'.$i18n->get(493).'</a>';
push(@array,\%hash);
}
return \@array;
}