Skip to content

Commit

Permalink
Fixed issue #7304: Error in printable view if a question uses differe…
Browse files Browse the repository at this point in the history
…nt conditions scenarios
  • Loading branch information
c-schmitz committed Feb 15, 2013
1 parent 1f71be6 commit d32896e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/controllers/admin/printablesurvey.php
Expand Up @@ -274,11 +274,11 @@ function index($surveyid, $lang = null)
{
if( $s == 0 && count($scenarioresult) > 1)
{
$sExplanation .= '<p class="scenario">'.self::_try_debug(__LINE__)." -------- Scenario {$scenariorow['scenario']} --------</p>\n\n";
$sExplanation .= '<p class="scenario">'." -------- Scenario {$scenariorow['scenario']} --------</p>\n\n";
}
if($s > 0)
{
$sExplanation .= '<p class="scenario">'.self::_try_debug(__LINE__).' -------- '.$clang->gT("or")." Scenario {$scenariorow['scenario']} --------</p>\n\n";
$sExplanation .= '<p class="scenario">'.' -------- '.$clang->gT("or")." Scenario {$scenariorow['scenario']} --------</p>\n\n";
}

$x=0;
Expand Down

0 comments on commit d32896e

Please sign in to comment.