Stuff I will need

This commit is contained in:
Greg Edwards
2015-01-26 23:04:01 -05:00
parent 4ab1d972db
commit 2b7dfe1a0f
3 changed files with 9 additions and 1 deletions

View File

@@ -33,7 +33,7 @@
<strong>White 2</strong>.</p>
</div>
<div class="gtsSection gtsInfo">
<p>Supported features: <strong>Wi-Fi Club</strong><sup title="Support provided by AltWFC servers">altwfc</sup>,
<p>Supported features: <strong>Wi-Fi Club</strong><sup title="Support provided through AltWFC servers">altwfc</sup>,
<strong>GTS</strong>, <strong>Battle Videos</strong>,
<strong>Random Matchup</strong></p>
</div>

View File

@@ -116,6 +116,7 @@ li
{
margin-left: 40px;
position: relative;
min-height: 32px;
}
.gtsInfo::before

View File

@@ -3,6 +3,8 @@ using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.IO;
using MySql.Data.MySqlClient;
using System.Configuration;
namespace PkmnFoundations.Web
{
@@ -57,6 +59,11 @@ namespace PkmnFoundations.Web
return filename.Substring(Dot, filename.Length - Dot).ToLowerInvariant();
}
public static MySqlConnection CreateConnection()
{
return new MySqlConnection(ConfigurationManager.ConnectionStrings["pkmnFoundationsConnectionString"].ConnectionString);
}
#endregion
}
}