Skip to content

Commit

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

Expand Down
4 changes: 2 additions & 2 deletions application/controllers/optout.php
Expand Up @@ -33,7 +33,7 @@ function local($langcode, $surveyid, $token)
Yii::app()->loadHelper('database');
Yii::app()->loadHelper('sanitize');
$sLanguageCode = $langcode;
$iSurveyID = $urveyid;
$iSurveyID = $surveyid;
$sToken = $token;
$sToken = sanitize_token($sToken);

Expand Down Expand Up @@ -80,7 +80,7 @@ function local($langcode, $surveyid, $token)
}
else
{
$html = clang->gT('You have been already removed from this survey.');
$html = $clang->gT('You have been already removed from this survey.');
}
}
}
Expand Down

0 comments on commit 2932184

Please sign in to comment.