Index: searches.php =================================================================== --- searches.php (revision 21070) +++ searches.php (working copy) @@ -15,6 +15,8 @@ // Load the canned searches require_once 'modules/tv/canned_searches.conf.php'; +// Load the local canned searches (if it exists) + include 'modules/tv/canned_searches_local.conf.php'; // Load the class for this page require_once tmpl_dir.'searches.php'; Index: search.php =================================================================== --- search.php (revision 21070) +++ search.php (working copy) @@ -260,6 +260,8 @@ $search_name = $search_name[1]; // Load the canned searches require_once 'modules/tv/canned_searches.conf.php'; + // Load the local canned searches (if it exists) + include 'modules/tv/canned_searches_local.conf.php'; // Find the query if (empty($Canned_Searches[$search_name])) add_warning("Unknown canned query: $search_name"); Index: canned_searches_local.conf.php.default =================================================================== --- canned_searches_local.conf.php.default (revision 0) +++ canned_searches_local.conf.php.default (revision 0) @@ -0,0 +1,25 @@ + "01:10:00" and callsign not like "%HD%"'; + +$Canned_Searches['Movies on Aussie TV (HD)'] = '( program.category_type like "%movie%" OR program.title like "%movie%" ) AND timediff(program.endtime, program.starttime) > "01:10:00" and callsign like "%HD%'; + +?>