<?
# blocked.php
#
# Lists all songs blocked from random play.
$phpgw_info["flags"] = array ("currentapp" => "tunez",
"enable_nextmatchs_class" => True);
include ("../header.inc.php"); #PHP Groupware header
include ("tunez.inc.php");
$title = "Songs blocked from random play";
include ("header.inc.php");
$kweerie = "SELECT * from songs WHERE playInRandomMode = 0 ORDER BY artist, songtitle";
listSongs($kweerie, "nee", "ja");
include ("footer.inc.php");
?>