source: trunk/admin/include/functions_upgrade.php @ 1878

Last change on this file since 1878 was 1075, checked in by rub, 18 years ago

Step 4 improvement issue 0000301:

o Correction lock categories and is_admin (functions with parameters now)
o Cannot use check_status with upgrade.php and upgrade_feed.php => New function check_upgrade use in upgrade*.php (new functionality for upgrade_feed.php)
o upgrade_feed.php is showed only for administrator user

File size: 2.1 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | PhpWebGallery - a PHP based picture gallery                           |
4// | Copyright (C) 2002-2003 Pierrick LE GALL - pierrick@phpwebgallery.net |
5// | Copyright (C) 2003-2006 PhpWebGallery Team - http://phpwebgallery.net |
6// +-----------------------------------------------------------------------+
7// | branch        : BSF (Best So Far)
8// | file          : $RCSfile$
9// | last update   : $Date: 2006-03-09 00:14:53 +0100 (jeu., 09 mars 2006) $
10// | last modifier : $Author: rub $
11// | revision      : $Revision: 1070 $
12// +-----------------------------------------------------------------------+
13// | This program is free software; you can redistribute it and/or modify  |
14// | it under the terms of the GNU General Public License as published by  |
15// | the Free Software Foundation                                          |
16// |                                                                       |
17// | This program is distributed in the hope that it will be useful, but   |
18// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
19// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
20// | General Public License for more details.                              |
21// |                                                                       |
22// | You should have received a copy of the GNU General Public License     |
23// | along with this program; if not, write to the Free Software           |
24// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
25// | USA.                                                                  |
26// +-----------------------------------------------------------------------+
27
28function check_upgrade()
29{
30  // Is PhpWebGallery already installed ?
31  if (!defined('PHPWG_IN_UPGRADE') or !PHPWG_IN_UPGRADE)
32  {
33    $message = 'PhpWebGallery is not in upgrade mode. In include/mysql.inc.php,
34insert line
35<pre style="background-color:lightgray">
36define(\'PHPWG_IN_UPGRADE\', true);
37</pre>
38if you want to upgrade';
39    die($message);
40  }
41}
42
43
44?>
Note: See TracBrowser for help on using the repository browser.