From 680efc25ed280394bc398b6ab66b8dbccb8f11d5 Mon Sep 17 00:00:00 2001 From: plegall Date: Tue, 6 Jan 2009 21:31:04 +0000 Subject: Code administration: convert all text files to Unix file format (CR as eol and not CRLF) git-svn-id: http://piwigo.org/svn/branches/2.0@3054 68402e56-0260-453c-a942-63ccdbb3a9ee --- plugins/c13y_upgrade/main.inc.php | 48 +++++++++++++++++++-------------------- 1 file changed, 24 insertions(+), 24 deletions(-) (limited to 'plugins/c13y_upgrade/main.inc.php') diff --git a/plugins/c13y_upgrade/main.inc.php b/plugins/c13y_upgrade/main.inc.php index 20556b8a5..565dcad71 100644 --- a/plugins/c13y_upgrade/main.inc.php +++ b/plugins/c13y_upgrade/main.inc.php @@ -19,28 +19,28 @@ // | along with this program; if not, write to the Free Software | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | // | USA. | -// +-----------------------------------------------------------------------+ +// +-----------------------------------------------------------------------+ + +/* +Plugin Name: Check upgrades +Version: 2.0 +Description: Check integrity of upgrades / Contrôle d'intégrité des mises à jour +Plugin URI: http://piwigo.org +Author: Piwigo team +Author URI: http://piwigo.org +*/ + +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'); + } +} -/* -Plugin Name: Check upgrades -Version: 2.0 -Description: Check integrity of upgrades / Contrôle d'intégrité des mises à jour -Plugin URI: http://piwigo.org -Author: Piwigo team -Author URI: http://piwigo.org -*/ - -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'); - } -} - -?> +?> -- cgit v1.2.3