1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 09:32:12 +01:00

OpenSearchEngine: Don't accept non http(s) urls

This commit is contained in:
David Rosca 2016-02-20 14:55:54 +01:00
parent 2375e4af7b
commit a819fca7dc

View File

@ -18,7 +18,7 @@
*/
/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
* Copyright (C) 2010-2016 David Rosca <nowrep@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -183,6 +183,10 @@ QString OpenSearchEngine::searchUrlTemplate() const
void OpenSearchEngine::setSearchUrlTemplate(const QString &searchUrlTemplate)
{
if (!searchUrlTemplate.startsWith(QL1S("http://")) && !searchUrlTemplate.startsWith(QL1S("https://"))) {
return;
}
m_searchUrlTemplate = searchUrlTemplate;
}
@ -279,6 +283,10 @@ QString OpenSearchEngine::suggestionsUrlTemplate() const
void OpenSearchEngine::setSuggestionsUrlTemplate(const QString &suggestionsUrlTemplate)
{
if (!suggestionsUrlTemplate.startsWith(QL1S("http://")) && !suggestionsUrlTemplate.startsWith(QL1S("https://"))) {
return;
}
m_suggestionsUrlTemplate = suggestionsUrlTemplate;
}