Skip to content

Commit 0b93b52

Browse files
committed
2.2.0 - PHP 8 support
1 parent b2c4cbf commit 0b93b52

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

code/ActivityCharts.class.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ public static function getActivityInfo($form_id, $view_id, $date_range, $submiss
229229
}
230230

231231
$results = array();
232-
while (list($key, $value) = each($stats)) {
232+
foreach ($stats as $key => $value) {
233233
$results[] = $value;
234234
}
235235

code/Module.class.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ class Module extends FormToolsModule
1717
protected $author = "Ben Keen";
1818
protected $authorEmail = "[email protected]";
1919
protected $authorLink = "https://formtools.org";
20-
protected $version = "2.1.2";
21-
protected $date = "2019-03-16";
20+
protected $version = "2.2.0";
21+
protected $date = "2023-02-26";
2222
protected $originLanguage = "en_us";
2323
protected $jsFiles = array(
2424
"https://www.gstatic.com/charts/loader.js",

0 commit comments

Comments
 (0)