Skip to content

Commit

Permalink
Fixed small bug on Ronalds request
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/phpsurveyor@2457 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Feb 28, 2007
1 parent 16dd591 commit 97d7798
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/printablesurvey.php
Expand Up @@ -58,7 +58,7 @@
$surveyprintlang=GetbaseLanguageFromSurveyid($surveyid);
}

$desquery = "SELECT * FROM ".db_table_name('surveys')." inner join ".db_table_name('surveys_languagesettings')." on (surveyls_survey_id=sid) WHERE sid=$surveyid and phpsv_surveys_languagesettings.surveyls_language=".$connect->qstr($surveyprintlang); //Getting data for this survey
$desquery = "SELECT * FROM ".db_table_name('surveys')." inner join ".db_table_name('surveys_languagesettings')." on (surveyls_survey_id=sid) WHERE sid=$surveyid and surveyls_language=".$connect->qstr($surveyprintlang); //Getting data for this survey

$desresult = db_execute_assoc($desquery);
while ($desrow = $desresult->FetchRow())
Expand Down

0 comments on commit 97d7798

Please sign in to comment.