Eliminated non-static method calls and other bulk fixes to fix php5 warnings
[fa-stable.git] / manufacturing / includes / db / work_order_issues_db.inc
index 0df0684652b2e1987858f2cc9f8c79f36dacc724..d9361bda8bf77d2c24717328730276f50ae966be 100644 (file)
@@ -14,6 +14,8 @@
 function add_work_order_issue($woid, $ref, $to_work_order, $items, $location, $workcentre,
        $date_, $memo_)
 {
+       global $Refs;
+
        begin_transaction();
 
        $details = get_work_order($woid);
@@ -58,7 +60,8 @@ function add_work_order_issue($woid, $ref, $to_work_order, $items, $location, $w
        if ($memo_)
                add_comments(28, $number, $date_, $memo_);
 
-       references::save_last($ref, 28);
+       $Refs->save(28, $number, $ref);
+       add_audit_trail(28, $number, $date_);
 
        commit_transaction();
 }