diff --git a/lib/WebGUI/Asset/Redirect.pm b/lib/WebGUI/Asset/Redirect.pm index c3a88eb1a..b082b4669 100644 --- a/lib/WebGUI/Asset/Redirect.pm +++ b/lib/WebGUI/Asset/Redirect.pm @@ -88,6 +88,7 @@ sub getEditForm { $tabform->getTab("properties")->url( -name=>"redirectUrl", -label=>WebGUI::International::get('redirect url', 'Asset_Redirect'), + -hoverHelp=>WebGUI::International::get('redirect url description', 'Asset_Redirect'), -value=>$self->getValue("redirectUrl") ); return $tabform; diff --git a/lib/WebGUI/Help/Asset_Redirect.pm b/lib/WebGUI/Help/Asset_Redirect.pm index 9f0071278..2190e0910 100644 --- a/lib/WebGUI/Help/Asset_Redirect.pm +++ b/lib/WebGUI/Help/Asset_Redirect.pm @@ -6,6 +6,11 @@ our $HELP = { title => 'redirect add/edit title', body => 'redirect add/edit body', fields => [ + { + title => 'redirect url', + description => 'redirect url description', + namespace => 'Asset_Redirect', + }, ], related => [ { diff --git a/lib/WebGUI/i18n/English/Asset_Redirect.pm b/lib/WebGUI/i18n/English/Asset_Redirect.pm index 8e9a4cc65..abdd36f40 100644 --- a/lib/WebGUI/i18n/English/Asset_Redirect.pm +++ b/lib/WebGUI/i18n/English/Asset_Redirect.pm @@ -15,16 +15,21 @@ our $I18N = { 'redirect add/edit body' => { message => q| -

The Page Redirect Asset causes the user's browser to be redirected to another page. It does this if it is viewed standalone, as part of a Layout Asset, or proxied via a macro.

+

The Page Redirect Asset causes the user's browser to be redirected to another page. It does this if it is viewed standalone, as part of a Page Asset, or proxied via a macro.

NOTE: The redirection will be disabled while in admin mode in order to allow editing the properties of the page.

-

+ Redirect URL
The URL where the user will be redirected. -

|, - lastUpdated => 1104718231, +|, + lastUpdated => 1119574115, context => 'Help text for redirects', }, + 'redirect url description' => { + message => q|The URL where the user will be redirected.|, + lastUpdated => 1119574089, + }, + }; 1;