diff --git a/out/out.Search.php b/out/out.Search.php index d2de6d74c..dca8831bc 100644 --- a/out/out.Search.php +++ b/out/out.Search.php @@ -247,7 +247,9 @@ $status = isset($get['status']) ? $get['status'] : array(); // // Default page to display is always one. $pageNumber=1; -if (isset($get["pg"])) { +if (isset($get['action']) && $get['action'] == 'export') { + $pageNumber = 'all'; +} elseif (isset($get["pg"])) { if (is_numeric($get["pg"]) && $get["pg"]>0) { $pageNumber = (int) $get["pg"]; }