diff --git a/plugins/TestPlugin/src/testplugin.cpp b/plugins/TestPlugin/src/testplugin.cpp index 440cdf895..50e1be224 100644 --- a/plugins/TestPlugin/src/testplugin.cpp +++ b/plugins/TestPlugin/src/testplugin.cpp @@ -9,7 +9,7 @@ void TestPlugin::init(QString sPath) bool TestPlugin::testPlugin() { - //This function is loaded right after init() + //This function is called right after init() //There should be some testing if plugin is loaded correctly //If this function returns false, plugin is automatically unloaded diff --git a/src/other/updater.cpp b/src/other/updater.cpp index fd50524bd..0e5e7a329 100644 --- a/src/other/updater.cpp +++ b/src/other/updater.cpp @@ -31,7 +31,7 @@ Updater::Updater(QupZilla* mainClass, QObject *parent) : void Updater::start() { - startDownloadingUpdateInfo(QUrl(QupZilla::WWWADDRESS+"/update.php?i=actualversion")); + startDownloadingUpdateInfo(QUrl(QupZilla::WWWADDRESS+"/update.php?v="+QupZilla::VERSION)); } void Updater::createTrayIcon()