Update gateways.php

Foreach has a typo -> must be =>
This commit is contained in:
SeyedGH
2020-12-09 17:18:17 +01:00
committed by GitHub
parent 5c8201ec0d
commit 0a33d7a90b

View File

@@ -553,7 +553,7 @@ if (!class_exists('gateways')) {
//add new gateways to session variables
if (is_array($gateways) && @sizeof($gateways) != 0) {
foreach ($gateways as $gateway_uuid -> $gateway) {
foreach ($gateways as $gateway_uuid => $gateway) {
$_SESSION['gateways'][$gateway_uuid] = $gateway['name'];
}
}
@@ -580,4 +580,4 @@ if (!class_exists('gateways')) {
}
}
?>
?>