Commit 0f88c7c3 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

winemenubuilder: Disallow desktop integration for internet shortcuts.

parent b520a19f
......@@ -1968,7 +1968,8 @@ static BOOL is_extension_banned(LPCWSTR extension)
if (!wcsicmp(extension, L".bat") ||
!wcsicmp(extension, L".com") ||
!wcsicmp(extension, L".exe") ||
!wcsicmp(extension, L".msi"))
!wcsicmp(extension, L".msi") ||
!wcsicmp(extension, L".url"))
return TRUE;
return FALSE;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment