Skip to content
Snippets Groups Projects
Commit e2673efe authored by Demian Katz's avatar Demian Katz
Browse files

Resolving VUFIND-714 (Issue login with NewGenLib ILS driver); thanks to Joachim Langenbach.

parent 2e515f65
Branches
Tags
No related merge requests found
......@@ -552,7 +552,7 @@ class NewGenLib extends AbstractBase
"p.membership_expiry_date as membership_expiry_date, p.email as " .
"email from patron p where p.patron_id='" . $PatId .
"' and p.user_password='" . $psswrd . "' and p.membership_start_date " .
"<= current_date and p.membership_expiry_date < current_date";
"<= current_date and p.membership_expiry_date > current_date";
try {
$sqlStmt = $this->db->prepare($sql);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment