Update database_transactions.php (#5152)

This commit is contained in:
agree 2020-02-16 13:21:43 -05:00 committed by GitHub
parent fd584852c5
commit 18e46a3911
1 changed files with 2 additions and 1 deletions

View File

@ -56,6 +56,7 @@
$sql_search .= " or lower(t.transaction_address) like :search ";
$sql_search .= " or lower(t.transaction_type) like :search ";
$sql_search .= " or cast(t.transaction_date as text) like :search ";
$sql_search .= " or lower(u.username) like :search ";
$sql_search .= ") ";
$parameters['search'] = '%'.$search.'%';
}
@ -162,4 +163,4 @@
//include the footer
require_once "resources/footer.php";
?>
?>