Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
SondagesPro-LimeSurvey-plugin
recomputeExpression
Commits
235e1d5d
Commit
235e1d5d
authored
May 11, 2015
by
Denis Chenu
Browse files
Fix : Really start by the first completed response
parent
2abf2694
Changes
1
Hide whitespace changes
Inline
Side-by-side
recomputeExpression.php
View file @
235e1d5d
...
...
@@ -132,7 +132,11 @@
}
elseif
(
$bDoNext
&&
$this
->
bIsAdmin
)
{
$oResponse
=
SurveyDynamic
::
model
(
$iSurveyId
)
->
find
(
"submitdate IS NOT NULL"
,
array
(
"order"
=>
"id"
));
$oResponse
=
SurveyDynamic
::
model
(
$iSurveyId
)
->
find
(
Menno Dekker
@mdekker
·
Aug 04, 2015
Contributor
I think you need to wrap this in an array, I get a blank screen now
I think you need to wrap this in an array, I get a blank screen now
Please
register
or
sign in
to reply
'select'
=>
'id'
,
'condition'
=>
'submitdate IS NOT NULL'
,
'order'
=>
'id'
,
);
if
(
!
$oResponse
)
$this
->
sMessage
=
"No submited response"
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment