From 4f373fe7edbc84eec7e7bf1e7b1754eba6046f5c Mon Sep 17 00:00:00 2001 From: Rod Roark Date: Wed, 30 May 2012 13:39:32 -0700 Subject: [PATCH] Fixed typo and added sponsor acknowledgment. --- interface/main/finder/dynamic_finder.php | 1 + interface/main/finder/dynamic_finder_ajax.php | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/interface/main/finder/dynamic_finder.php b/interface/main/finder/dynamic_finder.php index 62c2fe52a..99ed241e2 100644 --- a/interface/main/finder/dynamic_finder.php +++ b/interface/main/finder/dynamic_finder.php @@ -1,5 +1,6 @@ +// Sponsored by David Eschelbacher, MD // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/interface/main/finder/dynamic_finder_ajax.php b/interface/main/finder/dynamic_finder_ajax.php index 1fe0dd2c5..ebe0f6f29 100644 --- a/interface/main/finder/dynamic_finder_ajax.php +++ b/interface/main/finder/dynamic_finder_ajax.php @@ -1,5 +1,6 @@ +// Sponsored by David Eschelbacher, MD // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -28,7 +29,7 @@ $aColumns = explode(',', $_GET['sColumns']); $iDisplayStart = isset($_GET['iDisplayStart' ]) ? 0 + $_GET['iDisplayStart' ] : -1; $iDisplayLength = isset($_GET['iDisplayLength']) ? 0 + $_GET['iDisplayLength'] : -1; $limit = ''; -if ($iDisplayStaart >= 0 && $iDisplayLength >= 0) { +if ($iDisplayStart >= 0 && $iDisplayLength >= 0) { $limit = "LIMIT $iDisplayStart, $iDisplayLength"; } -- 2.11.4.GIT