";
}
diff --git a/include/offers.php b/include/offers.php
index 2aa150d..8be7530 100644
--- a/include/offers.php
+++ b/include/offers.php
@@ -32,11 +32,12 @@ require('./header.php');
//------------------------------------------------------------------------------
// Check for GET variables
//
- // ?id= View information of the offer with id
- // ?toggle_accept= Toggle the accepted status of the offer with id
- // ?generate_invoice= Generate an invoice for the offer with id
- // ?trash_invoice= Trash the invoice file
- // ?delete= Delete the offer with id
+ // ?id= View information of the offer with id
+ // ?toggle_accept= Toggle the accepted status of the offer with id
+ // ?toggle_payment_eligibility= Toggle the payment eligibility of the offer with id
+ // ?generate_invoice= Generate an invoice for the offer with id
+ // ?trash_invoice= Trash the invoice file
+ // ?delete= Delete the offer with id
//------------------------------------------------------------------------------
// The header of the page
@@ -69,7 +70,7 @@ require('./header.php');
try {
$offer = new Offer($_pdo, $id);
$offer->accepted = !$offer->accepted;
- echo "
The status offer #{$offer->id} has been set to ".($offer->accepted ? "accepted" : "unaccepted").".
";
+ echo "
The status of offer #{$offer->id} has been set to ".($offer->accepted ? "accepted" : "unaccepted").".
";
} catch (PDOException $e) {
echo "
The status of the offer could not be changed due to a PDO error.