From 34b1235749a95ed546d8505a9f28af7efd027c86 Mon Sep 17 00:00:00 2001 From: TheMrNomis Date: Thu, 3 Dec 2015 10:08:53 +0100 Subject: [PATCH] renames getEvents.php to databaseOperations.php --- getEvents.php => databaseOperations.php | 0 export.php | 2 +- index.php | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename getEvents.php => databaseOperations.php (100%) diff --git a/getEvents.php b/databaseOperations.php similarity index 100% rename from getEvents.php rename to databaseOperations.php diff --git a/export.php b/export.php index 5382e43..0a522f3 100644 --- a/export.php +++ b/export.php @@ -13,7 +13,7 @@ function icaldate($date) return date('Ymd',$dt).'T'. date('His',$dt). 'Z'; } -include_once('getEvents.php'); +include_once('databaseOperations.php'); $db = connect(); $events = getEventsSince($db, strtotime('last monday +'.$weekOffset.' weeks')); diff --git a/index.php b/index.php index 885936f..8b135d1 100644 --- a/index.php +++ b/index.php @@ -1,6 +1,6 @@