Skip to content

Commit

Permalink
Bugfixe: Double # in color
Browse files Browse the repository at this point in the history
  • Loading branch information
Compizfox committed May 28, 2014
1 parent a27fc3e commit 06dd858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backlog/include/classes.php
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ function history($limit = false) {
$result = $mysqli->query($query) or die($query);

while($row = $result->fetch_assoc()) {
$historystring .= "<tr><td>{$row['history_id']}</td><td>{$row['game']}</td><td>{$row['dlc']}</td><td style=\"background-color: {$row['oldcolor']};\">{$row['oldstatus']}</td><td style=\"background-color: #{$row['newcolor']};\">{$row['newstatus']}</td><td>{$row['date']}</td></tr>";
$historystring .= "<tr><td>{$row['history_id']}</td><td>{$row['game']}</td><td>{$row['dlc']}</td><td style=\"background-color: {$row['oldcolor']};\">{$row['oldstatus']}</td><td style=\"background-color: {$row['newcolor']};\">{$row['newstatus']}</td><td>{$row['date']}</td></tr>";
}

return $historystring;
Expand Down

0 comments on commit 06dd858

Please sign in to comment.