added "from app" to homepage links

This commit is contained in:
Jindra Petřík
2015-02-21 08:16:24 +01:00
parent 3b90e50345
commit 17c34d86c4

View File

@@ -244,14 +244,14 @@ public abstract class MainFrameMenu {
}
protected void helpUs() {
String helpUsURL = ApplicationInfo.PROJECT_PAGE + "/help_us.html";
String helpUsURL = ApplicationInfo.PROJECT_PAGE + "/help_us.html?ref=app";
if (!View.navigateUrl(helpUsURL)) {
View.showMessageDialog(null, translate("message.helpus").replace("%url%", helpUsURL));
}
}
protected void homePage() {
String homePageURL = ApplicationInfo.PROJECT_PAGE;
String homePageURL = ApplicationInfo.PROJECT_PAGE+"?ref=app";
if (!View.navigateUrl(homePageURL)) {
View.showMessageDialog(null, translate("message.homepage").replace("%url%", homePageURL));
}