forked from ZwiiCMS-Team/ZwiiCMS
Merge branch 'master' into dev10
This commit is contained in:
commit
c0a6832074
14
CHANGES.md
14
CHANGES.md
@ -510,6 +510,20 @@ Mise à jour :
|
|||||||
- Normalize.css version 8.0.1
|
- Normalize.css version 8.0.1
|
||||||
- Tippy version 3.3.0
|
- Tippy version 3.3.0
|
||||||
|
|
||||||
|
## Version 8.5.9
|
||||||
|
* Correction :
|
||||||
|
- Module Form : faille CSRF gestion data
|
||||||
|
- Problème empêchant la suppression d'une galerie
|
||||||
|
* Modification :
|
||||||
|
- Module Form : Bouton tout effacer
|
||||||
|
|
||||||
|
## Version 8.5.8
|
||||||
|
* Correction :
|
||||||
|
- Erreur dans la procédure d'update suite à un ancien numéro de versions sur 4 digits
|
||||||
|
|
||||||
|
## Version 8.5.7
|
||||||
|
* Correction :
|
||||||
|
- Message d'erreur ecran modification du compte
|
||||||
|
|
||||||
## Version 8.5.6
|
## Version 8.5.6
|
||||||
* Correction :
|
* Correction :
|
||||||
|
21
index.php
21
index.php
@ -21,27 +21,6 @@ if(version_compare(PHP_VERSION, '5.6.0', '<')) {
|
|||||||
exit('PHP 5.6+ required.');
|
exit('PHP 5.6+ required.');
|
||||||
}
|
}
|
||||||
|
|
||||||
/*Configuration Proxy */
|
|
||||||
$proxy = 'cache-etu.univ-artois.fr:3128';
|
|
||||||
if (!empty($proxy)) {
|
|
||||||
$proxy = str_replace('http://', 'tcp://', $proxy);
|
|
||||||
$context = array(
|
|
||||||
'http' => array(
|
|
||||||
'proxy' => $proxy,
|
|
||||||
'request_fulluri' => true,
|
|
||||||
'verify_peer' => false,
|
|
||||||
'verify_peer_name' => false,
|
|
||||||
),
|
|
||||||
"ssl"=>array(
|
|
||||||
"verify_peer"=>false,
|
|
||||||
"verify_peer_name"=>false
|
|
||||||
)
|
|
||||||
);
|
|
||||||
stream_context_set_default($context);
|
|
||||||
} else {
|
|
||||||
echo "Proxy not found" . PHP_EOL;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Set locale to French */
|
/* Set locale to French */
|
||||||
date_default_timezone_set('Europe/Paris');
|
date_default_timezone_set('Europe/Paris');
|
||||||
setlocale (LC_TIME, 'fra_FRA', 'french');
|
setlocale (LC_TIME, 'fra_FRA', 'french');
|
||||||
|
Loading…
Reference in New Issue
Block a user