aboutsummaryrefslogtreecommitdiff
path: root/cgi/manage.py
diff options
context:
space:
mode:
Diffstat (limited to 'cgi/manage.py')
-rw-r--r--cgi/manage.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/cgi/manage.py b/cgi/manage.py
index 4839b5e..cd00a07 100644
--- a/cgi/manage.py
+++ b/cgi/manage.py
@@ -861,6 +861,10 @@ def manage(self, path_split):
if form_submitted:
rebuild = 0
+ RB_FRONT = BIT(0)
+ RB_ALL = BIT(1)
+ RB_KAKO = BIT(2)
+ RB_HOME = BIT(3)
# Update board settings
@@ -873,7 +877,7 @@ def manage(self, path_split):
if board['name'] != self.formdata['name']:
board['name'] = self.formdata['name']
- rebuild |= RB_BOARD
+ rebuild |= RB_ALL
if board['board_type'] == 1:
rebuild |= RB_KAKO