aboutsummaryrefslogtreecommitdiffstats
path: root/admin/maintenance.php
diff options
context:
space:
mode:
authorrub <rub@piwigo.org>2008-03-01 13:23:51 +0000
committerrub <rub@piwigo.org>2008-03-01 13:23:51 +0000
commitf54877ca04e9e99e67b94f7c486229d4c6543a8a (patch)
treeccb84fee846e2d0809552840b867c30804ab548f /admin/maintenance.php
parent35076ee1b9e32618d3c92bdd8aee20f2c4abb694 (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 'admin/maintenance.php')
-rw-r--r--admin/maintenance.php5
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 :