code review by hf: fixes bug to add shopping to cart
Showing
1 changed file
with
2 additions
and
1 deletions
@@ -129,7 +129,8 @@ class Helpers | @@ -129,7 +129,8 @@ class Helpers | ||
129 | */ | 129 | */ |
130 | public static function getShoppingKeyByCookie() | 130 | public static function getShoppingKeyByCookie() |
131 | { | 131 | { |
132 | - $cookie = isset($_COOKIE['_spk']) ? $_COOKIE['_spk'] : ''; | 132 | + $cookie = isset($_COOKIE['_Spk']) ? $_COOKIE['_Spk'] : ''; |
133 | + | ||
133 | return $cookie; | 134 | return $cookie; |
134 | } | 135 | } |
135 | 136 |
-
Please register or login to post a comment