DashletForm: Provide a helpful hint how to input external urls

refs #5600
This commit is contained in:
Johannes Meyer 2015-09-22 16:24:09 +02:00
parent f47c0475c9
commit fcdf41a9b8
1 changed files with 4 additions and 1 deletions

View File

@ -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)'
)
)
);
}