diff options
Diffstat (limited to 'plugins/c13y_upgrade/main.inc.php')
-rw-r--r-- | plugins/c13y_upgrade/main.inc.php | 48 |
1 files changed, 24 insertions, 24 deletions
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');
- }
-}
-
-?>
+?> |