Browse Source

renames getEvents.php to databaseOperations.php

master
n0m1s 10 years ago
parent
commit
34b1235749
3 changed files with 2 additions and 2 deletions
  1. +0
    -0
      databaseOperations.php
  2. +1
    -1
      export.php
  3. +1
    -1
      index.php

getEvents.php → databaseOperations.php View File


+ 1
- 1
export.php View File

@ -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'));


+ 1
- 1
index.php View File

@ -1,6 +1,6 @@
<?php
session_start();
include_once('getEvents.php');
include_once('databaseOperations.php');
$db = connect();
$days = array(


Loading…
Cancel
Save