Module: check_mk
Branch: master
Commit: 3c9eb862eb1af0793569d8dd442ae22d17bd3aab
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=3c9eb862eb1af0…
Author: Andreas Boesl <ab(a)mathias-kettner.de>
Date: Thu Dec 20 15:44:02 2012 +0100
mode_edit_rule now uses POST method
(prevents too large URI error)
---
ChangeLog | 1 +
web/htdocs/wato.py | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 371a5f5..71212d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -74,6 +74,7 @@
like ntp_time and tcp_conn_stats
* FIX: Persisting changing of folder titles when only the title has changed
* Add: Creating a new rule immediately opens its edit formular
+ * The rules formular now uses POST as transaction method
Event Console:
* FIX: fix exception in rules that use facility local7
diff --git a/web/htdocs/wato.py b/web/htdocs/wato.py
index 98bff13..08cb129 100644
--- a/web/htdocs/wato.py
+++ b/web/htdocs/wato.py
@@ -10328,7 +10328,7 @@ def mode_edit_rule(phase, new = False):
html.help(rulespec["help"])
- html.begin_form("rule_editor")
+ html.begin_form("rule_editor", method="POST")
# Rule Options
vs_rule_options.render_input("options", rule_options)