Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sucs-site
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sucssite
sucs-site
Compare revisions
8132522d0b10770ecae8aa4812c118df255374d0 to 25678b0727d047981e2ee613e31d737f15a61a7b
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
sucssite/sucs-site
Select target project
No results found
25678b0727d047981e2ee613e31d737f15a61a7b
Select Git revision
Branches
beta
master
sucs-site
Swap
Target
sucssite/sucs-site
Select target project
osian/sucs-site
kais58/sucs-site
imranh/sucs-site
foshjedi2004/sucs-site
gigosaurus/sucs-site
matstn/sucs-site
ripp_/sucs-site
eggnog/sucs-site
sucssite/sucs-site
elbows/sucs-site
realitykiller/sucs-site
crox/sucs-site
vectre/sucs-site
welshbyte/sucs-site
paperclipman/sucs-site
15 results
8132522d0b10770ecae8aa4812c118df255374d0
Select Git revision
Branches
beta
master
sucs-site
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
Add "enviroments" to the sucssite ci thing.
· 1f4a4016
Imran Hussain
authored
8 years ago
https://projects.sucs.org/help/ci/environments
1f4a4016
fix su api
· c46edb84
Imran Hussain
authored
8 years ago
c46edb84
Merge branch 'master' into beta
· 25678b07
Imran Hussain
authored
8 years ago
25678b07
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/suapiv2.php
+2
-4
2 additions, 4 deletions
lib/suapiv2.php
with
2 additions
and
4 deletions
lib/suapiv2.php
View file @
25678b07
...
...
@@ -31,10 +31,8 @@ $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
as
$typeOfMember
)
{
foreach
(
$typeOfMember
[
"Detail_Collection"
][
"Detail"
]
as
$member
)
{
array_push
(
$just_members
,
$member
[
"@attributes"
]);
}
foreach
(
$membership_data
[
"Detail_Collection"
]
as
$member
)
{
array_push
(
$just_members
,
$member
[
"@attributes"
]);
}
/* You can now use $just_members to probe member detials. It's an array of arrays which each contain:
...
...
This diff is collapsed.
Click to expand it.