diff options
Diffstat (limited to 'lib/class/random.class.php')
-rw-r--r-- | lib/class/random.class.php | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/class/random.class.php b/lib/class/random.class.php index a4756db9..7b525641 100644 --- a/lib/class/random.class.php +++ b/lib/class/random.class.php @@ -45,21 +45,6 @@ class Random implements media { } // constructor /** - * album - * This returns the ID of a random album, nothing special - */ - public static function album() { - - $sql = "SELECT `id` FROM `album` ORDER BY RAND() LIMIT 1"; - $db_results = Dba::read($sql); - - $results = Dba::fetch_assoc($db_results); - - return $results['id']; - - } // album - - /** * artist * This returns the ID of a random artist, nothing special here for now */ |