Skip to content

Commit

Permalink
Dev: Remove wrong HTML
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Oct 7, 2016
1 parent 1fec038 commit 3a66381
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions application/controllers/admin/conditionsaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -413,15 +413,11 @@ public function index($subaction, $iSurveyID=null, $gid=null, $qid=null)

if (isset($currentfield) && $currentfield != $rows['cfieldname'] )
{
$aViewUrls['output'] .= "<tr class='evenrow'>\n"
."\t<td colspan='2' class='operator'>\n"
.gT("and")."</td></tr>";
$aViewUrls['output'] .= gT("and");
}
elseif (isset($currentfield))
{
$aViewUrls['output'] .= "<tr class='evenrow'>\n"
."\t<td colspan='2' class='operator'>\n"
.gT("or")."</td></tr>";
$aViewUrls['output'] .= gT("or");
}

$aViewUrls['output'] .= "\t<tr class='{$markcidstyle}'>\n"
Expand Down

0 comments on commit 3a66381

Please sign in to comment.