Skip to content

Commit

Permalink
Implemented: #1323 - Hide fax number from 'printable survey' screen w…
Browse files Browse the repository at this point in the history
…hen no fax number exists

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/stable_plus@3510 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Oct 30, 2007
1 parent 39314c5 commit 1b8c5de
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion admin/printablesurvey.php
Expand Up @@ -695,7 +695,11 @@
$printablesurveyoutput .="\t\t\t\t<tr>\n";
$printablesurveyoutput .="\t\t\t\t\t<td align='center'>\n";
$printablesurveyoutput .="\t\t\t\t\t\t<strong>".$clang->gT("Submit Your Survey.")."</strong><br />\n";
$printablesurveyoutput .="\t\t\t\t\t\t".$clang->gT("Thank you for completing this survey.")." ".$clang->gT("Please fax your completed survey to:")." $surveyfaxto";
$printablesurveyoutput .="\t\t\t\t\t\t".$clang->gT("Thank you for completing this survey.");
if (!empty($surveyfaxto))
{
$printablesurveyoutput .= $clang->gT("Please fax your completed survey to:")." $surveyfaxto";
}
if ($surveyuseexpiry=="Y")
{
$printablesurveyoutput .=$clang->gT("Please submit by")." $surveyexpirydate";
Expand Down

0 comments on commit 1b8c5de

Please sign in to comment.