Remove unneeded reference to getID3

This commit is contained in:
Junior 2024-05-18 15:11:05 +00:00
parent 82b6d32469
commit a4dcc0e0af
3 changed files with 0 additions and 3 deletions

View File

@ -1,7 +1,6 @@
<?php <?php
require 'header.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"; $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(); $fields = array();

View File

@ -1,7 +1,6 @@
<?php <?php
require 'header.php'; require 'header.php';
require_once 'getid3/getid3.php';
$query = "SELECT id, songid FROM " . INSTANTQTABLE . " ORDER BY id"; $query = "SELECT id, songid FROM " . INSTANTQTABLE . " ORDER BY id";
$sth = $globaldbh->prepare($query); $sth = $globaldbh->prepare($query);

View File

@ -1,7 +1,6 @@
<?php <?php
require 'header.php'; require 'header.php';
require_once 'getid3/getid3.php';
if ( isset($_REQUEST['debug']) ) { if ( isset($_REQUEST['debug']) ) {
$debug = true; $debug = true;