Skip to content

Commit

Permalink
fixup TH alignment in dumpArray()
Browse files Browse the repository at this point in the history
  • Loading branch information
infrastation committed Sep 21, 2017
1 parent 9cefd54 commit b3908f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wwwroot/inc/exceptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ function dumpArray ($arr)
{
echo '<table class="exceptionParametersDump">';
foreach ($arr as $key => $value)
echo '<tr><th>' . stringForTD ($key) . '</th><td>' . stringForTD ($value, 100) . '</td></tr>';
echo '<tr><th class=tdright>' . stringForTD ($key) . '</th><td>' . stringForTD ($value, 100) . '</td></tr>';
echo '</table>';
}

Expand Down

0 comments on commit b3908f5

Please sign in to comment.