Ignore:
Timestamp:
Mar 5, 2014, 9:52:06 AM (10 years ago)
Author:
bonhommedeneige
Message:

Version 1.3.0 - Piwigo 2.6 compatibility

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Force_HTTPS/maintain.inc.php

    r22560 r27560  
    66*
    77* Created   :   02.05.2013
    8 * Updated   :   03.05.2013
     8* Updated   :   05.03.2014
    99* Author    :   bonhommedeneige
    1010*
     
    2626/**
    2727Changelog :
     28 1.3.0 (05.03.2014) : Renamed deltree function to force_https_deltree to avoid multiple declarations of
     29                      function accross multiple plugins. Piwigo 2.6 compatibility
    2830 1.2.0 (05.05.2013) : No change
    2931 1.1.0 (04.05.2013) : Added HSTS security settings
     
    3335
    3436if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
    35 define('FORCE_HTTPS_PATH' , PHPWG_PLUGINS_PATH . basename(dirname(__FILE__)) . '/');
     37if (!defined('FORCE_HTTPS_PATH')) define('FORCE_HTTPS_PATH' , PHPWG_PLUGINS_PATH . basename(dirname(__FILE__)) . '/');
    3638
    3739function plugin_install()
     
    5456        if (is_dir(PHPWG_ROOT_PATH.PWG_LOCAL_DIR.'piwigo-force-https'))
    5557        {
    56                 deltree(PHPWG_ROOT_PATH.PWG_LOCAL_DIR.'piwigo-force-https');
     58                force_https_deltree(PHPWG_ROOT_PATH.PWG_LOCAL_DIR.'piwigo-force-https');
    5759        }
    5860        $q = 'DELETE FROM '.CONFIG_TABLE.' WHERE param LIKE "fhp_%" LIMIT 6;';
     
    7072}
    7173
    72 function deltree($path)
     74function force_https_deltree($path)
    7375{
    7476        if (is_dir($path))
     
    8284                                if (is_dir($pathfile))
    8385                                {
    84                                         deltree($pathfile);
     86                                        force_https_deltree($pathfile);
    8587                                }
    8688                                else
Note: See TracChangeset for help on using the changeset viewer.