I haven't changed edit_survey_questions.tpl
And the section that holds the $data.qid array doesnt hold the first question.
{$data.qid|print_r} only gives two id's. Where it should give 3 id's.
edit_survey_questions.tpl line: 20-44CODE
{section name="p" loop=$data.qid}
<form method="GET" action="{$conf.html}/edit_survey.php">
<input type="hidden" name="mode" value="{$data.mode_edit_question}">
<input type="hidden" name="sid" value="{$data.sid}">
<tr bgcolor="{cycle values="#F9F9F9,#FFFFFF"}">
<td style="text-align:center;">
{$data.qnum[p]}
<input type="hidden" name="qid" value="{$data.qid[p]}">
</td>
<td style="text-align:center">{$data.qid[p]}</td>
<td>
<div class="indented_cell">
{$data.question[p]}
</div>
{section name="show_edep" loop=1 show=$data.show_edep[p]}
<br />
<div class="indented_cell"><strong>Dependencies:</strong></div>
{section name="dep" loop=$data.edep_option[p] show=$data.edep_option[p]}
<div style="margin-left:5%;">
• {$data.edep_option[p][dep]} if question {$data.edep_qnum[p][dep]}
is: {$data.edep_value[p][dep]}
</div>
{/section}
{/section}
But when I press move up, the question that wasnt visible is shown again, but now the question that moved up is gone. So the first question isnt visible.