diff options
author | rub <rub@piwigo.org> | 2008-03-01 13:23:51 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2008-03-01 13:23:51 +0000 |
commit | f54877ca04e9e99e67b94f7c486229d4c6543a8a (patch) | |
tree | ccb84fee846e2d0809552840b867c30804ab548f /admin/maintenance.php | |
parent | 35076ee1b9e32618d3c92bdd8aee20f2c4abb694 (diff) |
0000809: Use more php classes implementation
Use class for c13y
git-svn-id: http://piwigo.org/svn/trunk@2232 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/maintenance.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/admin/maintenance.php b/admin/maintenance.php index 4312e55b4..18d4bad92 100644 --- a/admin/maintenance.php +++ b/admin/maintenance.php @@ -99,8 +99,9 @@ DELETE } case 'c13y' : { - include_once(PHPWG_ROOT_PATH.'admin/include/functions_check_integrity.inc.php'); - c13y_maintenance(); + include_once(PHPWG_ROOT_PATH.'admin/include/check_integrity.class.php'); + $c13y = new check_integrity(); + $c13y->maintenance(); break; } default : |