diff options
author | Camil Staps | 2015-03-22 16:41:10 +0100 |
---|---|---|
committer | Camil Staps | 2015-03-22 16:41:10 +0100 |
commit | 2ed42f3375a1dc3309c35155d4c4e834d77e0c3c (patch) | |
tree | 58b9faecc3ac0fff59ec178d01508bced5ae3f7a /include/home.php | |
parent | Collapsing is remembered during a session (diff) |
Hide unaccepted offers from timeline
Diffstat (limited to 'include/home.php')
-rw-r--r-- | include/home.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/home.php b/include/home.php index e0e7b69..d9832fd 100644 --- a/include/home.php +++ b/include/home.php @@ -264,7 +264,7 @@ require('header.php'); <div class="panel-body"> <ul class="timeline"> <?php - $offers = BusinessAdmin::getOffers($_pdo); + $offers = BusinessAdmin::getOffers($_pdo, array('`accepted`=1')); $list = array(); $sort_list = array(); foreach ($offers as $offer) { |