blob: 6589780b30ec2737bdd4bfae959e4f7eb4efca16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php
/**
* Elgg upgrade script.
*
* This script triggers any necessary upgrades. If the site has been upgraded
* to the most recent version of the code, no upgrades are run and the caches
* are flushed. If you would prefer that this script is not accessible to others
* after an upgrade, you can delete it. Future versions of Elgg will include a
* new version of the script. Deleting the script is not a requirement and
* leaving it behind does not affect the security of the site.
*
* @package Elgg.Core
* @subpackage Upgrade
*/
define('UPGRADING', 'upgrading');
require_once(dirname(__FILE__) . "/engine/start.php");
if (get_input('upgrade') == 'upgrade') {
if (elgg_get_unprocessed_upgrades()) {
version_upgrade();
}
elgg_invalidate_simplecache();
elgg_filepath_cache_reset();
} else {
echo elgg_view_page(elgg_echo('upgrade'), '', 'upgrade');
exit;
}
forward();
|