Remove unneeded reference to getID3
This commit is contained in:
parent
82b6d32469
commit
a4dcc0e0af
|
@ -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();
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user