Skip to content

Commit

Permalink
2.2.0 - PHP 8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
benkeen committed Feb 27, 2023
1 parent 7ad49c4 commit d499cbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions code/Module.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ class Module extends FormToolsModule
protected $author = "Ben Keen";
protected $authorEmail = "ben.keen@gmail.com";
protected $authorLink = "http://formtools.org";
protected $version = "2.1.5";
protected $date = "2019-03-17";
protected $version = "2.2.0";
protected $date = "2023-02-26";
protected $originLanguage = "en_us";
protected $jsFiles = array("scripts/tests.js");
protected $cssFiles = array("css/styles.css");
Expand Down
2 changes: 1 addition & 1 deletion code/Tables.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public static function getComponentTables($component_info)
$dbPrefix = Core::getDbTablePrefix();

$tables = array();
while (list($table_name) = each($component_info["tables"])) {
foreach ($component_info["tables"] as $table_name => $empty) {
$tables[] = "{$dbPrefix}{$table_name}";
}

Expand Down

0 comments on commit d499cbd

Please sign in to comment.