Skip to content

Commit

Permalink
Add missing semi-colon to prevent parse error
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey_yii@11731 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
Gaurav Narula committed Dec 22, 2011
1 parent 33960df commit fa99fa5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion application/controllers/optin.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function local($langcode, $surveyid, $token)
Yii::app()->loadHelper('database');
Yii::app()->loadHelper('sanitize');
$sLanguageCode = $langcode;
$iSurveyID = $urveyid
$iSurveyID = $urveyid;
$sToken = $token;
$sToken = sanitize_token($sToken);

Expand Down
2 changes: 1 addition & 1 deletion application/controllers/optout.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function local($langcode, $surveyid, $token)
Yii::app()->loadHelper('database');
Yii::app()->loadHelper('sanitize');
$sLanguageCode = $langcode;
$iSurveyID = $urveyid
$iSurveyID = $urveyid;
$sToken = $token;
$sToken = sanitize_token($sToken);

Expand Down

0 comments on commit fa99fa5

Please sign in to comment.