diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt
index 54119f4f0..562428027 100644
--- a/docs/changelog/7.x.x.txt
+++ b/docs/changelog/7.x.x.txt
@@ -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
diff --git a/lib/WebGUI/Operation/Shared.pm b/lib/WebGUI/Operation/Shared.pm
index 804db1222..ee1be369b 100644
--- a/lib/WebGUI/Operation/Shared.pm
+++ b/lib/WebGUI/Operation/Shared.pm
@@ -85,6 +85,12 @@ TODO: DOCUMENT ME
$hash{'options.display'} = ''.$i18n->get(65).'';
push(@array,\%hash);
}
+ { ##Return to site link
+ my %hash;
+ $hash{'options.display'} = ''.$i18n->get(493).'';
+ push(@array,\%hash);
+ }
+
return \@array;
}