diff --git a/ajax_getcustomq.php b/ajax_getcustomq.php
index ac855a5..8a6c345 100644
--- a/ajax_getcustomq.php
+++ b/ajax_getcustomq.php
@@ -1,7 +1,6 @@
 <?php
 
 require 'header.php';
-require_once 'getid3/getid3.php';
 
 $query = "SELECT songid FROM " . QUEUECONTENTSTABLE . " AS q LEFT JOIN " . SONGSTABLE . " AS s ON q.songid=s.id WHERE qid=:qid ORDER BY s.album, s.title";
 $fields = array();
diff --git a/ajax_getjukebox.php b/ajax_getjukebox.php
index 69f3905..5b9d89c 100644
--- a/ajax_getjukebox.php
+++ b/ajax_getjukebox.php
@@ -1,7 +1,6 @@
 <?php
 
 require 'header.php';
-require_once 'getid3/getid3.php';
 
 $query = "SELECT id, songid FROM " . INSTANTQTABLE . " ORDER BY id";
 $sth = $globaldbh->prepare($query);
diff --git a/ajax_listsongs.php b/ajax_listsongs.php
index 0b8f62e..1807a11 100644
--- a/ajax_listsongs.php
+++ b/ajax_listsongs.php
@@ -1,7 +1,6 @@
 <?php
 
 require 'header.php';
-require_once 'getid3/getid3.php';
 
 if ( isset($_REQUEST['debug']) ) {
    $debug = true;