From 6c2eb4a4d81f95071bcc8cf05c50ec50e908d5ec Mon Sep 17 00:00:00 2001 From: pero1203 Date: Fri, 19 Feb 2021 06:53:52 +0100 Subject: [PATCH] Urlencode imena podjetja pri klicu cebelica apija --- frontend/payments/cebelica/InvoiceFox/cebelcaApi.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/payments/cebelica/InvoiceFox/cebelcaApi.php b/frontend/payments/cebelica/InvoiceFox/cebelcaApi.php index fc4adfc45..18fa181cc 100644 --- a/frontend/payments/cebelica/InvoiceFox/cebelcaApi.php +++ b/frontend/payments/cebelica/InvoiceFox/cebelcaApi.php @@ -119,7 +119,7 @@ function ustvariPredracun($api,$podatki,$lang='si') { // dodaj partnerja $r = $api->assurePartner( array( - 'name' => $arr['name'], + 'name' => urlencode($arr['name']), 'street' => $arr['street'], 'postal' => $arr['postal'], 'city' => $arr['city'],