Skip to content

Commit

Permalink
Fix google groups links
Browse files Browse the repository at this point in the history
  • Loading branch information
Gnafu committed Feb 21, 2017
1 parent be33119 commit a84c0e1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions web/client/product/components/home/MailingLists.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ var MailingLists = React.createClass({
</tr>
<tr>
<td style={{paddingLeft: "10px", paddingRight: "10px"}}>
<form action="http://groups.google.com/group/mapstore-users/boxsubscribe">
<form action="https://groups.google.com/group/mapstore-users/boxsubscribe">
<I18N.Message msgId="home.ml.email"/> <input type="text" name="email" />
<input type="submit" name="sub" value={this.context.messages.home.ml.subscribe} />
</form>
</td>
</tr>
<tr>
<td align="right">
<a className="link-white-bg" href="http://groups.google.com/group/mapstore-users"><I18N.Message msgId="home.ml.visit_group"/></a>
<a className="link-white-bg" href="https://groups.google.com/group/mapstore-users"><I18N.Message msgId="home.ml.visit_group"/></a>
</td>
</tr>
</tbody>
Expand All @@ -70,15 +70,15 @@ var MailingLists = React.createClass({
</tr>
<tr>
<td style={{paddingLeft: "10px", paddingRight: "10px"}}>
<form action="http://groups.google.com/group/mapstore-developers/boxsubscribe">
<form action="https://groups.google.com/group/mapstore-developers/boxsubscribe">
<I18N.Message msgId="home.ml.email"/> <input type="text" name="email" />
<input type="submit" name="sub" value={this.context.messages.home.ml.subscribe} />
</form>
</td>
</tr>
<tr>
<td align="right">
<a className="link-white-bg" href="http://groups.google.com/group/mapstore-developers"><I18N.Message msgId="home.ml.visit_group"/></a>
<a className="link-white-bg" href="https://groups.google.com/group/mapstore-developers"><I18N.Message msgId="home.ml.visit_group"/></a>
</td>
</tr>
</tbody>
Expand Down

0 comments on commit a84c0e1

Please sign in to comment.