diff --git a/html/ajax_card.php b/html/ajax_card.php
index 8dbbae236..83fe43567 100644
--- a/html/ajax_card.php
+++ b/html/ajax_card.php
@@ -276,6 +276,7 @@ case 'fs':
{
$array[$i]['quick_code']=$a[$i]['quick_code'];
$array[$i]['name']=h($a[$i]['vw_name']);
+ $array[$i]['first_name']=h($a[$i]['vw_first_name']);
$array[$i]['description']=h($a[$i]['vw_description']);
$array[$i]['javascript']=sprintf("set_value('%s','%s');",
$inp,$array[$i]['quick_code']);
diff --git a/include/class_database.php b/include/class_database.php
index 1e76ace35..a86c62106 100644
--- a/include/class_database.php
+++ b/include/class_database.php
@@ -804,7 +804,10 @@ class Database
}
static function test_me()
{}
-
+ function status()
+ {
+ return pg_transaction_status($this->db);
+ }
}
/* test::test_me(); */
diff --git a/include/template/card_result.php b/include/template/card_result.php
index 4140372ae..862983147 100644
--- a/include/template/card_result.php
+++ b/include/template/card_result.php
@@ -1,10 +1,10 @@