Fix for agent download links (#4351)
Ylian Saint-Hilaire committed
Aug 1, 2022 at 09:45 UTC
9b69b9949d3b55e56b579aa6eeacc843fde1cba4
2 files changed
+8
-5
translate/translate.json
+2
-2
@@ -5471,7 +5471,7 @@
5471
{
5472
"en": "Account changed to sync with LDAP data.",
5473
"nl": "Account gewijzigd om te synchroniseren met LDAP gegevens.",
5474
- "pl": "Konto zmienione di synchronizacji z danymi LDAP.",
5474
+ "pl": "Konto zmienione di synchronizacji z danymi LDAP.",
5475
"xloc": [
5476
"default.handlebars->45->2377"
5477
]
@@ -79276,4 +79276,4 @@
79276
]
79277
}
79278
]
79279
-}
79279
+}
\ No newline at end of file
views/agentinvite.handlebars
+6
-3
@@ -91,7 +91,7 @@
91
<h3>Microsoft™ Windows 64bit</h3>
92
<p><a id="win64url">Download the software here</a>, run it and press "Install" or "Connect".</p>
93
<div style="text-align:center">
94
- <a id="win64url"><img class="winagent-img" src="images/winagent.png" /></a>
94
+ <a id="win64url2"><img class="winagent-img" src="images/winagent.png" /></a>
95
</div>
96
</div>
97
@@ -99,7 +99,7 @@
99
<h3>Microsoft™ Windows 32bit</h3>
100
<p><a id="win32url">Download the software here</a>, run it and press "Install" or "Connect".</p>
101
<div style="text-align:center">
102
- <a id="win32url"><img class="winagent-img" src="images/winagent.png" /></a>
102
+ <a id="win32url2"><img class="winagent-img" src="images/winagent.png" /></a>
103
</div>
104
</div>
105
@@ -118,7 +118,7 @@
118
<h3>Apple™ MacOS</h3>
119
<p><a id="macosurl">Download the installer here</a>, right click on it or press "control" and click on the file. Then select "Open" and follow the instructions.</p>
120
<div style="text-align:center">
121
- <a id="macosurl"><img src="images/macosagent.png" /></a>
121
+ <a id="macosurl2"><img src="images/macosagent.png" /></a>
122
</div>
123
</div>
124
@@ -347,15 +347,18 @@
347
var url = 'meshagents?id=4&meshid=' + meshid;
348
if (installFlags != 0) { url += ('&installflags=' + installFlags); }
349
Q('win64url').href = url;
350
+ Q('win64url2').href = url;
351
352
// Windows 32bit Setup
353
url = 'meshagents?id=3&meshid=' + meshid;
354
if (installFlags != 0) { url += ('&installflags=' + installFlags); }
355
Q('win32url').href = url;
356
+ Q('win32url2').href = url;
357
358
// MacOS Setup
359
url = 'meshosxagent?id=16&meshid=' + meshid;
360
Q('macosurl').href = url;
361
+ Q('macosurl2').href = url;
362
363
// Linux Setup
364
if (serverHttps == 1) {