-
Notifications
You must be signed in to change notification settings - Fork 402
Closed
Description
The function addLineItem (
sdk-php/lib/AuthorizeNetAIM.php
Lines 267 to 276 in 9d24edc
| public function addLineItem($item_id, $item_name, $item_description, $item_quantity, $item_unit_price, $item_taxable) | |
| { | |
| $line_item = ""; | |
| $delimiter = ""; | |
| foreach (func_get_args() as $key => $value) { | |
| $line_item .= $delimiter . $value; | |
| $delimiter = "<|>"; | |
| } | |
| $this->_additional_line_items[] = $line_item; | |
| } |
Does not sanitize inputs. An input that includes | could cause corrupted and inaccurate data.
Metadata
Metadata
Assignees
Labels
No labels