Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
samples
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Χάρης Παπαδόπουλος
samples
Commits
0b0a9e22
Commit
0b0a9e22
authored
8 years ago
by
Σταύρος Παπαδάκης
Browse files
Options
Downloads
Patches
Plain Diff
Fix wrong answer when amka is used on queryIDnoCD
parent
60ba11c4
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
academic-id/slim-app/src/osteam/App.php
+5
-1
5 additions, 1 deletion
academic-id/slim-app/src/osteam/App.php
with
5 additions
and
1 deletion
academic-id/slim-app/src/osteam/App.php
+
5
−
1
View file @
0b0a9e22
...
...
@@ -184,7 +184,11 @@ class App extends BaseApp
}
if
(
$parsed_result
[
'response'
]
===
'SUCCESS'
&&
$parsed_result
[
'errorReason'
]
===
null
)
{
if
(
isset
(
$parsed_result
[
'inspectionResult'
])
&&
$parsed_result
[
'inspectionResult'
][
'webServiceSuccess'
]
===
true
)
{
&&
$parsed_result
[
'inspectionResult'
][
'webServiceSuccess'
]
===
true
&&
(
(
$endpoint
=
$this
->
urlAcademicId
)
||
(
$endpoint
=
$this
->
urlAmka
&&
is_array
(
$parsed_result
[
'inspectionResult'
][
'beneficiaryNames'
]))
))
{
return
$this
->
withTextReady
(
$res
,
'isStudent:true'
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment