1283b5ecb1
Change plugins versions to 1.8 Change 3 plugins URI. git-svn-id: http://piwigo.org/svn/trunk@2243 68402e56-0260-453c-a942-63ccdbb3a9ee
48 lines
2.1 KiB
PHP
48 lines
2.1 KiB
PHP
<?php
|
|
/*
|
|
Plugin Name: Check upgrades
|
|
Version: 1.8
|
|
Description: Check integrity of upgrades / Contrôle d'intégrité des mises à jour
|
|
Plugin URI: http://www.phpwebgallery.net
|
|
Author: PhpWebGallery team
|
|
Author URI: http://www.phpwebgallery.net
|
|
*/
|
|
// +-----------------------------------------------------------------------+
|
|
// | 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 |
|
|
// +-----------------------------------------------------------------------+
|
|
// | file : $Id$
|
|
// | last update : $Date$
|
|
// | last modifier : $Author$
|
|
// | revision : $Revision$
|
|
// +-----------------------------------------------------------------------+
|
|
// | This program is free software; you can redistribute it and/or modify |
|
|
// | it under the terms of the GNU General Public License as published by |
|
|
// | the Free Software Foundation |
|
|
// | |
|
|
// | This program is distributed in the hope that it will be useful, but |
|
|
// | WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
|
// | General Public License for more details. |
|
|
// | |
|
|
// | You should have received a copy of the GNU General Public License |
|
|
// | along with this program; if not, write to the Free Software |
|
|
// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
|
|
// | USA. |
|
|
// +-----------------------------------------------------------------------+
|
|
|
|
if (!defined('PHPWG_ROOT_PATH'))
|
|
{
|
|
die('Hacking attempt!');
|
|
}
|
|
|
|
if (in_array(script_basename(), array('popuphelp', 'admin')))
|
|
{
|
|
if (defined('IN_ADMIN') and IN_ADMIN)
|
|
{
|
|
include_once(dirname(__FILE__).'/initialize.inc.php');
|
|
}
|
|
}
|
|
|
|
?>
|