Skip to content

Commit

Permalink
Dashboard fix: payment amount should be the last column
Browse files Browse the repository at this point in the history
  • Loading branch information
veggiematts committed Feb 11, 2019
1 parent 5d49426 commit f7d85ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/ajax_htmldata/getDashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
echo "<th>" . _("Resource Type") . "</th>";
echo "<th>" . _("Subject") . "</th>";
echo "<th>" . _("Acquisition Type") . "</th>";
echo "<th>" . _("Payment amount") . "</th>";
echo "<th>" . _("Library number") . "</th>";
echo "<th>" . _("Payment amount") . "</th>";
echo "</tr></thead>";
echo "<tbody>";
$count = sizeof($results);
Expand All @@ -38,8 +38,8 @@
$result['generalSubject'] . $result['detailedSubject'];
echo "<td>" . $subject . "</td>";
echo "<td>" . $result['acquisitionType'] . "</td>";
echo "<td>" . $result['paymentAmount'] . "</td>";
echo "<td>" . $result['libraryNumber'] . "</td>";
echo "<td>" . $result['paymentAmount'] . "</td>";
echo "</tr>";
} else {
echo "<tr><td colspan='5'><b>";
Expand Down

0 comments on commit f7d85ec

Please sign in to comment.