aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/c13y_upgrade/main.inc.php
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2009-01-06 21:39:04 +0000
committerplegall <plg@piwigo.org>2009-01-06 21:39:04 +0000
commitbe3c66f112170f1865cd7041836cd598959133e5 (patch)
tree312b7d62ede7deefdc2e8d6d5908e800aad4e55c /plugins/c13y_upgrade/main.inc.php
parent1b711ad2365b47cb1f1969cad2195c180ad62609 (diff)
merge r3054 from branch 2.0 to trunk
Code administration: convert all text files to Unix file format (CR as eol and not CRLF) git-svn-id: http://piwigo.org/svn/trunk@3055 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r--plugins/c13y_upgrade/main.inc.php48
1 files changed, 24 insertions, 24 deletions
diff --git a/plugins/c13y_upgrade/main.inc.php b/plugins/c13y_upgrade/main.inc.php
index 46f72b8fe..c4d6b8705 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');
- }
-}
-
-?>
+?>