File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 1
- 1.0.3 (XXX XXth 2015)
1
+ 1.0.4 (Jun 19th 2015)
2
2
---------------------
3
-
4
3
* Honor anonymous attribute when sending block finder mails
5
4
* Display admin warning if no transfer fees are set
5
+ * Moved admin_checks.php into the admin panel/system/setup
6
+ * Checks are now loaded individually from pages/admin/checks
6
7
7
8
1.0.3 (Apr 29th 2015)
8
9
---------------------
Original file line number Diff line number Diff line change 28
28
}
29
29
30
30
// we want to load anything in checks/ that is check_*.inc.php
31
- $ potentialfiles = scandir (__DIR__ ."/checks/ " );
32
- foreach ($ potentialfiles as $ pf ) {
33
- if ($ pf == '. ' || $ pf == '.. ' ) continue ;
34
- if (preg_match ("/check_+.+\.inc\.php/ " , $ pf )) {
35
- include_once ("checks/ " .$ pf );
36
- }
31
+ foreach (glob (__DIR__ ."/checks/check_*.inc.php " ) as $ file ) {
32
+ include_once ($ file );
37
33
}
38
34
}
39
35
$ smarty ->assign ("ERRORS " , $ error );
You can’t perform that action at this time.
0 commit comments