From fcdf41a9b80d72e3e08e1af696b5dc43492c457d Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 22 Sep 2015 16:24:09 +0200 Subject: [PATCH] DashletForm: Provide a helpful hint how to input external urls refs #5600 --- application/forms/Navigation/DashletForm.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/application/forms/Navigation/DashletForm.php b/application/forms/Navigation/DashletForm.php index c1e6f66ec..8e065a52c 100644 --- a/application/forms/Navigation/DashletForm.php +++ b/application/forms/Navigation/DashletForm.php @@ -25,7 +25,10 @@ class DashletForm extends NavigationItemForm array( 'required' => true, 'label' => $this->translate('Url'), - 'description' => $this->translate('The url to load in the dashlet') + 'description' => $this->translate( + 'The url to load in the dashlet. For external urls, make sure to prepend' + . ' an appropriate protocol identifier (e.g. http://example.tld)' + ) ) ); }