blob: af0835f577b7d92521be1d1de41dc4ce3ec357a0 (
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
|
<?php
/**
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @link http://elgg.org/
*/
?>
<html>
<head>
<title><?php echo elgg_echo('upgrading'); ?></title>
<meta http-equiv="refresh" content="1;url=<?php echo $vars['url']; ?>upgrade.php?upgrade=upgrade"/>
</head>
<body bgcolor="white">
<table width="100%" height="100%" border="0" style="margin: 0px; padding: 0px">
<tr>
<td width="100%" height="100%" valign="middle" align="center">
<img src="<?php echo $vars['url']; ?>_graphics/ajax_loader_bw.gif" />
</td>
</tr>
</table>
</body>
</html>
|