Index: sources/wifi/WifiInterface.cpp =================================================================== diff -u -r081df84b4b81ab39296f42c3c7e91deb021b8979 -r7f61c3b45a50145fe5c245018d481d6266166fa6 --- sources/wifi/WifiInterface.cpp (.../WifiInterface.cpp) (revision 081df84b4b81ab39296f42c3c7e91deb021b8979) +++ sources/wifi/WifiInterface.cpp (.../WifiInterface.cpp) (revision 7f61c3b45a50145fe5c245018d481d6266166fa6) @@ -916,7 +916,7 @@ * \return true if succeeds and false otherwise */ bool WifiInterface::checkScript(QString &vScript, const QString &vShellScript) { - vScript = _scriptsFolder + vShellScript; + vScript = Storage::Scripts_Path_Name() + vShellScript; QFileInfo info(vScript); if ( ! info.exists () ) { LOG_DEBUG(QString("script %1 does not exist." ).arg(vScript)); return false; } if ( ! info.isExecutable() ) { LOG_DEBUG(QString("script %1 is not executable." ).arg(vScript)); return false; }