Skip to content

Commit

Permalink
Resolved bug 04125: Text when quota reached in wrong language
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey@8427 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
Igor Dobraca committed Feb 23, 2010
1 parent c52f4f4 commit 36c140f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common.php
Original file line number Diff line number Diff line change
Expand Up @@ -6515,7 +6515,7 @@ function getQuotaInformation($surveyid,$quotaid='all')
$query = "SELECT * FROM ".db_table_name('quota').", ".db_table_name('quota_languagesettings')."
WHERE ".db_table_name('quota').".id = ".db_table_name('quota_languagesettings').".quotals_quota_id
AND sid='{$surveyid}'
AND quotals_language='$baselang'";
AND quotals_language='".$_SESSION['s_lang']."'";
if ($quotaid != 'all')
{
$query .= " AND id=$quotaid";
Expand Down

0 comments on commit 36c140f

Please sign in to comment.