From 1409fb5007298961febf7cf5a567f67691ce50a7 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Wed, 15 Jul 2015 17:01:20 -0400 Subject: [PATCH] Update the display start --- controllers/Import.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/controllers/Import.php b/controllers/Import.php index da4e4a8..54e5641 100644 --- a/controllers/Import.php +++ b/controllers/Import.php @@ -707,14 +707,13 @@ case 1: $numPagesImported = $this->_import(); $start = filter_var($_REQUEST['start'], FILTER_VALIDATE_INT); + echo '

Start: ' . $start . '

'; if ($start === false) { $start = 0; } else { $start += PAGES_PER_LOAD; } - echo '

- Start: ' . $start . '

-

' . $numPagesImported . ' Pages Imported + echo '

' . $numPagesImported . ' Pages Imported

-- 2.17.1