Skip to content
GitLab
Explore
Sign in
Commits on Source (4)
Fix suapi again...
· 419d3d7c
Imran Hussain
authored
Sep 20, 2016
419d3d7c
Merge branch 'beta'
· ac65d5d0
Imran Hussain
authored
Sep 20, 2016
ac65d5d0
Merge branch 'master' into beta
· 03035be4
Imran Hussain
authored
Sep 20, 2016
03035be4
Merge branch 'beta' into sucs-site
· 13e9a0fd
Imran Hussain
authored
Sep 20, 2016
13e9a0fd
Hide whitespace changes
Inline
Side-by-side
lib/suapiv2.php
View file @
13e9a0fd
...
...
@@ -31,7 +31,7 @@ $membership_data = $formated_raw_data["table1"]["table1_Product_Collection"]["ta
// make a new array that just contains *every* member no matter what they bought
$just_members
=
array
();
foreach
(
$membership_data
[
"Detail_Collection"
]
as
$member
)
{
foreach
(
$membership_data
[
"Detail_Collection"
]
[
"Detail"
]
as
$member
)
{
array_push
(
$just_members
,
$member
[
"@attributes"
]);
}
...
...