From cbfdf65da1b22992abb8feb31713c2988ce89d6e Mon Sep 17 00:00:00 2001
From: Greg Burri <greg.burri@gmail.com>
Date: Fri, 29 Jul 2016 13:40:18 +0200
Subject: [PATCH] Update to PHP 7.

---
 index.php         | 28 ++++++++++++++--------------
 php/connexion.php |  5 +----
 2 files changed, 15 insertions(+), 18 deletions(-)

diff --git a/index.php b/index.php
index 3025188..ebe9781 100644
--- a/index.php
+++ b/index.php
@@ -1,16 +1,16 @@
 <?php # coding: utf-8
-
-$MENU = array(
-   'accueil' => 'Accueil', # la page par défaut
-   'jeux_joues' => 'Jeux joués',
-   'inscription' => 'Inscription',
-   'inscrits' => 'Inscrits',
-   'http://www.euphorik.ch/#page=&quot;minichat&quot;;conv=[1642]' => 'Chat',
-   'contacts' => 'Contacts',
-   #'mods' => 'Mods',
-   #'cracks' => 'Cracks',
-   #'pizzas' => 'Pizza',
-);
+
+$MENU = array(
+   'accueil' => 'Accueil', # la page par défaut
+   'jeux_joues' => 'Jeux joués',
+   'inscription' => 'Inscription',
+   'inscrits' => 'Inscrits',
+   'http://www.euphorik.ch/#page=&quot;minichat&quot;;conv=[1642]' => 'Chat',
+   'contacts' => 'Contacts',
+   #'mods' => 'Mods',
+   #'cracks' => 'Cracks',
+   #'pizzas' => 'Pizza',
+);
 
 include_once("php/participant.php");
 include_once("php/connexion.php");
@@ -18,8 +18,8 @@ include_once("php/config.php");
 include_once("php/controller.php");
 include_once("php/panel.php");
 
-# Différents objets, sont accessibles directement par les pages (voir dossier '/php/pages/').
-$page = $_GET['page'] ? $_GET['page'] : 'accueil';
+# Différents objets, sont accessibles directement par les pages (voir dossier '/php/pages/').
+$page = isset($_GET['page']) ? $_GET['page'] : 'accueil';
 $connexion = new Connexion();
 $config = new Config();
 $participant = $connexion->participant;
diff --git a/php/connexion.php b/php/connexion.php
index 0d337c1..8464b33 100644
--- a/php/connexion.php
+++ b/php/connexion.php
@@ -17,7 +17,7 @@ class Connexion
       if (!file_exists("php/config_bd.php"))
       {
          echo "Le fichier 'php/config_bd.php' n'existe pas, création en cours...\n";
-         if (!is_writable("."))
+         if (!is_writable("php/"))
          {
            echo "Le dossier 'php' n'est pas accessible en écriture, veuillez changer les droits et recommencer.";
            exit();
@@ -44,9 +44,6 @@ class Connexion
         exit();
       }
 
-      //mysql_set_charset("UTF8");
-      //mysql_query('SET AUTOCOMMIT=0');
-
       if (isset($_POST['effacer_cookie'])) # le membre se délogue
       {
          setcookie("COOKIE_INFO_PARTICIPANT", "", time() - 100); # 'efface' le cookie membre
-- 
2.49.0