2006-12-02 04:36:16 +00:00
|
|
|
<?php
|
|
|
|
/*
|
2008-12-30 15:56:12 +00:00
|
|
|
* e107 website system
|
|
|
|
*
|
2009-11-18 01:06:08 +00:00
|
|
|
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
2008-12-30 15:56:12 +00:00
|
|
|
* Released under the terms and conditions of the
|
|
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
|
|
*
|
|
|
|
* Administration - e107 System Update
|
|
|
|
*
|
|
|
|
* $Source: /cvs_backup/e107_0.8/e107_admin/e107_update.php,v $
|
2010-02-10 18:18:01 +00:00
|
|
|
* $Revision$
|
|
|
|
* $Date$
|
|
|
|
* $Author$
|
2008-12-30 15:56:12 +00:00
|
|
|
*
|
2006-12-02 04:36:16 +00:00
|
|
|
*/
|
2013-03-28 00:41:29 -07:00
|
|
|
define("e_MINIMAL",true);
|
2020-12-19 11:12:53 -08:00
|
|
|
define('e_ADMIN_UPDATE', true); // used in class2.php
|
2021-01-16 13:32:35 -08:00
|
|
|
require_once (__DIR__."/../class2.php");
|
2008-12-30 15:56:12 +00:00
|
|
|
|
2012-12-08 00:36:34 -08:00
|
|
|
// include_lan(e_LANGUAGEDIR.e_LANGUAGE.'/admin/lan_'.e_PAGE);
|
2009-08-28 16:11:02 +00:00
|
|
|
|
2006-12-02 04:36:16 +00:00
|
|
|
$e_sub_cat = 'database';
|
|
|
|
|
2008-12-30 15:56:12 +00:00
|
|
|
require_once ("auth.php");
|
|
|
|
require_once ("update_routines.php");
|
|
|
|
|
2012-12-08 00:36:34 -08:00
|
|
|
new e107Update($dbupdate);
|
|
|
|
|
2017-11-15 17:51:46 -08:00
|
|
|
e107::getSession()->set('core-update-status', false); // reset update status.
|
|
|
|
|
2012-12-08 00:36:34 -08:00
|
|
|
require_once ("footer.php");
|
|
|
|
|
|
|
|
|
2006-12-02 04:36:16 +00:00
|
|
|
?>
|