summaryrefslogtreecommitdiff
path: root/src/web/_controller/bucket.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/_controller/bucket.php')
-rw-r--r--src/web/_controller/bucket.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/web/_controller/bucket.php b/src/web/_controller/bucket.php
index 460f862..1723f72 100644
--- a/src/web/_controller/bucket.php
+++ b/src/web/_controller/bucket.php
@@ -17,6 +17,10 @@ class Bucket_controller extends Controller {
$this->error(400);
return;
}
+
+ $data['before'] = $this->bucket_model->get_before($data['name']);
+ $data['after'] = $this->bucket_model->get_after($data['name']);
+
$this->view('bucket/main', $data);
}
}