mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-10 16:08:34 +01:00
Consider urls based on https protocol:
- Fix admin links are no longer working due to wrong url
This commit is contained in:
parent
8c21c99773
commit
5a179d5e2c
@ -270,7 +270,7 @@ egw.extend('links', egw.MODULE_GLOBAL, function()
|
||||
*/
|
||||
link: function(_url, _extravars)
|
||||
{
|
||||
if (_url.substr(0,4) == 'http' && _url.indexOf('://') < 5)
|
||||
if (_url.substr(0,4) == 'http' && _url.indexOf('://') <= 5)
|
||||
{
|
||||
// already a full url (eg. download_url of vfs), nothing to do
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user