From 4897ab523998a058f898855b82caaa3213994cf6 Mon Sep 17 00:00:00 2001 From: "rtucker@mozilla.com" Date: Tue, 3 Sep 2013 19:57:02 +0000 Subject: [PATCH] Moved country queryset to the proper location git-svn-id: https://svn.mozilla.org/projects/pto/trunk@119652 4eb1ac78-321c-0410-a911-ec516a8615a5 --- export.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/export.php b/export.php index 018e297..62cae8c 100644 --- a/export.php +++ b/export.php @@ -7,10 +7,10 @@ if (function_exists($output_function)){ $results = Filtering::getRecords(); - $aLdapCountries = Filtering::getCountries(); call_user_func($output_function, $results, $from_time, $to_time); } elseif (!isset($_GET["format"])) { // Don't do anything. Fall through to exporting as pretty HTML. + $aLdapCountries = Filtering::getCountries(); } else { // Format not supported header("HTTP/1.1 400 Bad Request");