diff --git a/core/core.php b/core/core.php index 8b8e78d8..3628923b 100644 --- a/core/core.php +++ b/core/core.php @@ -2291,7 +2291,7 @@ class layout extends common { if($this->getUser('group') >= self::GROUP_ADMIN) { $rightItems .= '
  • ' . template::ico('users') . '
  • '; $rightItems .= '
  • ' . template::ico('brush') . '
  • '; - $rightItems .= '
  • ' . template::ico('gear') . '
  • '; + $rightItems .= '
  • ' . template::ico('cog-alt') . '
  • '; // Mise à jour automatique if(helper::checkNewVersion() ) { $rightItems .= '
  • ' . template::ico('update colorRed') . '
  • '; @@ -2673,7 +2673,7 @@ class template { %s data-lity > - ' . self::ico('download', 'right') . ' + ' . self::ico('upload', 'right') . ' ', $attributes['class'], diff --git a/index.php b/index.php index 883ea33a..f4329f70 100755 --- a/index.php +++ b/index.php @@ -23,28 +23,6 @@ if(version_compare(PHP_VERSION, '5.6.0', '<')) { date_default_timezone_set('Europe/Paris'); setlocale (LC_TIME, 'fra_fra', 'french'); - -/*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; -} - /** * Initialisation de Zwii */