Skip to content

Commit 7ad49c4

Browse files
committed
2.1.5
1 parent 293f105 commit 7ad49c4

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
.DS_Store
2+
.idea

code/Module.class.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ class Module extends FormToolsModule
1313
protected $author = "Ben Keen";
1414
protected $authorEmail = "[email protected]";
1515
protected $authorLink = "http://formtools.org";
16-
protected $version = "2.1.4";
17-
protected $date = "2018-12-23";
16+
protected $version = "2.1.5";
17+
protected $date = "2019-03-17";
1818
protected $originLanguage = "en_us";
1919
protected $jsFiles = array("scripts/tests.js");
2020
protected $cssFiles = array("css/styles.css");

lang/en_us.php

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
$L["phrase_missing_table_c"] = "missing table: ";
2020
$L["phrase_missing_column_c"] = "missing column: ";
21+
$L["phrase_mysql_version"] = "MySQL Version";
2122
$L["phrase_table_looks_good_c"] = "Table and columns look good: ";
2223
$L["phrase_invalid_column_c"] = "Invalid column: ";
2324
$L["phrase_full_logs"] = "Full Logs";

templates/env_tab_summary.tpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<td class="medium_grey">{$env_info.php_version}</td>
99
</tr>
1010
<tr>
11-
<td>{$LANG.phrase_mysql_version}</td>
11+
<td>{$L.phrase_mysql_version}</td>
1212
<td class="medium_grey">{$env_info.mysql_version}</td>
1313
</tr>
1414
<tr>

0 commit comments

Comments
 (0)