add a return to site link in account options
This commit is contained in:
parent
6f457bf78b
commit
901457bbb2
2 changed files with 7 additions and 0 deletions
|
|
@ -19,6 +19,7 @@
|
|||
- fixed: Select All checkbox in Asset Manager has returned
|
||||
- fixed: DataForm Integer value zero does not pass validation
|
||||
- added: Page range (start-finish) to available paginator text
|
||||
- rfe: view profile
|
||||
|
||||
7.5.22
|
||||
- fixed: Layout template now gets prepared correctly
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue