mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-22 12:41:11 +00:00
Fixing more urls
This commit is contained in:
parent
d8111393db
commit
5519eb6cf1
3 changed files with 4 additions and 4 deletions
|
@ -39,7 +39,7 @@ const InfoButton = exports.InfoButton = React.createClass({
|
|||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="http://www.ensl.org/articles/464" target="_blank">
|
||||
<a href="https://www.ensl.org/articles/464" target="_blank">
|
||||
<i className="fa fa-legal"> </i> Gather Rules
|
||||
</a>
|
||||
</li>
|
||||
|
|
|
@ -85,7 +85,7 @@ const AuthFailedSplash = React.createClass({
|
|||
<h3><small>If you are logged on, try visiting a few pages on ENSL.org so the server can update your cookies</small></h3>
|
||||
<h3><small>If this error persists please contact an admin to fix it</small></h3>
|
||||
<br />
|
||||
<p><a className="btn btn-primary btn-lg" href="http://www.ensl.org" role="button">Go to website</a></p>
|
||||
<p><a className="btn btn-primary btn-lg" href="https://www.ensl.org" role="button">Go to website</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -105,7 +105,7 @@ const BannedSplash = React.createClass({
|
|||
<h3>You're currently barred from joining gathers</h3>
|
||||
<h3><small>Either wait for the ban to expire or talk to an admin to get it lifted</small></h3>
|
||||
<br />
|
||||
<p><a className="btn btn-primary btn-lg" href="http://www.ensl.org/bans" role="button">See the ban list</a></p>
|
||||
<p><a className="btn btn-primary btn-lg" href="https://www.ensl.org/bans" role="button">See the ban list</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -19,7 +19,7 @@ function User (user) {
|
|||
this.username = user['username'];
|
||||
this.country = user['country'];
|
||||
this.time_zone = user['time_zone'];
|
||||
this.avatar = enslClient.baseUrl + user['avatar'];
|
||||
this.avatar = enslClient.getFullAvatarUri(user['avatar']);
|
||||
this.admin = user['admin'];
|
||||
this.moderator = user['moderator'];
|
||||
this.team = user['team'];
|
||||
|
|
Loading…
Reference in a new issue