From 20249e1fd123d5e26a73d339dd5395173133e7d0 Mon Sep 17 00:00:00 2001 From: TheMrNomis Date: Thu, 12 Nov 2015 11:36:32 +0100 Subject: [PATCH] added FUTURE messages --- getEvents.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/getEvents.php b/getEvents.php index 33fcf6d..e60f680 100755 --- a/getEvents.php +++ b/getEvents.php @@ -125,6 +125,7 @@ function getEventsSince($db,$date) */ function getEvents() { + //FUTURE: delete this function $pdo = connect(); $stmt = $pdo->prepare('SELECT titre, localisation, dtstart, dtend, description, url FROM events, categorie WHERE events.categorie = categorie.id'); $stmt->execute(); @@ -137,6 +138,7 @@ function getEvents() */ function getEvent($id) { + //FUTURE: delete this function $pdo = connect(); $stmt = $pdo->prepare('SELECT titre, localisation, dtstart, dtend, description, url FROM events WHERE id = ?'); $stmt->execute(array($id));