diff options
author | rub <rub@piwigo.org> | 2008-02-13 20:13:12 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2008-02-13 20:13:12 +0000 |
commit | ea960a5563416318ec4bfc9da81af3d2e0f7ed85 (patch) | |
tree | 786a888a6b3385d4b1711f9d5eb66c20a3386ab1 /admin/maintenance.php | |
parent | 42b184eed3c3e33fc2476c986a8eb06a766bb4b8 (diff) |
Resolved issue 0000792: Admin "intro" : Integrity control bypass
Some sentences must be re-write ;-)
git-svn-id: http://piwigo.org/svn/trunk@2208 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/maintenance.php')
-rw-r--r-- | admin/maintenance.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/admin/maintenance.php b/admin/maintenance.php index 7ee5f84e5..4312e55b4 100644 --- a/admin/maintenance.php +++ b/admin/maintenance.php @@ -2,7 +2,7 @@ // +-----------------------------------------------------------------------+ // | PhpWebGallery - a PHP based picture gallery | // | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net | -// | Copyright (C) 2003-2007 PhpWebGallery Team - http://phpwebgallery.net | +// | Copyright (C) 2003-2008 PhpWebGallery Team - http://phpwebgallery.net | // +-----------------------------------------------------------------------+ // | file : $Id$ // | last update : $Date$ @@ -97,6 +97,12 @@ DELETE do_maintenance_all_tables(); break; } + case 'c13y' : + { + include_once(PHPWG_ROOT_PATH.'admin/include/functions_check_integrity.inc.php'); + c13y_maintenance(); + break; + } default : { break; @@ -120,6 +126,7 @@ $template->assign_vars( 'U_MAINT_SESSIONS' => $start_url.'sessions', 'U_MAINT_FEEDS' => $start_url.'feeds', 'U_MAINT_DATABASE' => $start_url.'database', + 'U_MAINT_C13Y' => $start_url.'c13y', 'U_HELP' => PHPWG_ROOT_PATH.'popuphelp.php?page=maintenance', ) ); |