Bug 7977: Removing unused code from quotes_ajax.pl
authorChris Nighswonger <cnighswonger@foundations.edu>
Fri, 11 May 2012 11:42:06 +0000 (07:42 -0400)
committerPaul Poulain <paul.poulain@biblibre.com>
Thu, 24 May 2012 12:14:59 +0000 (14:14 +0200)
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
Signed-off-by: Mason James <mtj@kohaaloha.com>
tools/quotes/quotes_ajax.pl

index bcc4f2e..926fe9d 100755 (executable)
@@ -88,15 +88,8 @@ else {
     my $iTotalRecords = '';
     my $sth = '';
 
-    if (my $filter = $params->{'sSearch'}) {
-        # This seems a bit brute force and ungraceful, but it provides a very general, simple search on all fields
-        $iTotalRecords = $dbh->selectrow_array("SELECT count(*) FROM quotes WHERE id LIKE %?% OR source LIKE %?% OR text LIKE %?% OR timestamp LIKE %?%;",undef,($filter, $filter, $filter, $filter));
-        $sth = $dbh->prepare("SELECT * FROM quotes;");
-    }
-    else {
-        $iTotalRecords = $dbh->selectrow_array('SELECT count(*) FROM quotes;');
-        $sth = $dbh->prepare("SELECT * FROM quotes;");
-    }
+    $iTotalRecords = $dbh->selectrow_array('SELECT count(*) FROM quotes;');
+    $sth = $dbh->prepare("SELECT * FROM quotes;");
 
     $sth->execute();
     if ($sth->err) {