Skip to content

Commit

Permalink
Fixed issue #05730: Error in citronade Question template: 'squid' and…
Browse files Browse the repository at this point in the history
… 'aid' not found in replacement.php

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey_dev@12268 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
tmswhite committed Jan 31, 2012
1 parent a7f7761 commit 000c025
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions replacements.php
Expand Up @@ -149,8 +149,8 @@ function templatereplace($line, $replacements=array(), $anonymized=false, $quest
$_question_class = $question['class'];
$_question_man_class = $question['man_class'];
$_question_input_error_class = $question['input_error_class'];
$_aid = $question['aid'];
$_sqid = $question['sqid'];
$_aid = (isset($question['aid']) ? $question['aid'] : '');
$_sqid = (isset($question['sqid']) ? $question['sqid'] : '');
}
else
{
Expand Down

0 comments on commit 000c025

Please sign in to comment.