diff --git a/app/Ninja/PaymentDrivers/BasePaymentDriver.php b/app/Ninja/PaymentDrivers/BasePaymentDriver.php index d11badbbe5a5..cae31c8396bf 100644 --- a/app/Ninja/PaymentDrivers/BasePaymentDriver.php +++ b/app/Ninja/PaymentDrivers/BasePaymentDriver.php @@ -710,7 +710,7 @@ class BasePaymentDriver $term = strtolower($matches[2]); $price = $invoice_item->cost; if ($plan == PLAN_ENTERPRISE) { - preg_match('/###[\d] [\w]* (\d*)/', $invoice_item->notes, $numUserMatches); + preg_match('/###[\d]* [\w]* (\d*)/', $invoice_item->notes, $numUserMatches); if (count($numUserMatches)) { $numUsers = $numUserMatches[1]; } else {