diff --git a/resources/ajax_htmldata/getDashboard.php b/resources/ajax_htmldata/getDashboard.php
index d2a6e4e8d..5279eab9a 100644
--- a/resources/ajax_htmldata/getDashboard.php
+++ b/resources/ajax_htmldata/getDashboard.php
@@ -22,8 +22,8 @@
echo "
" . _("Resource Type") . " | ";
echo "" . _("Subject") . " | ";
echo "" . _("Acquisition Type") . " | ";
- echo "" . _("Payment amount") . " | ";
echo "" . _("Library number") . " | ";
+ echo "" . _("Payment amount") . " | ";
echo "";
echo "";
$count = sizeof($results);
@@ -38,8 +38,8 @@
$result['generalSubject'] . $result['detailedSubject'];
echo "" . $subject . " | ";
echo "" . $result['acquisitionType'] . " | ";
- echo "" . $result['paymentAmount'] . " | ";
echo "" . $result['libraryNumber'] . " | ";
+ echo "" . $result['paymentAmount'] . " | ";
echo "";
} else {
echo "";
|