Browse Source

Fix symbols output in the webui.

tags/0.9.1
Vsevolod Stakhov 9 years ago
parent
commit
2d31590f04
2 changed files with 6 additions and 3 deletions
  1. 1
    1
      interface
  2. 5
    2
      src/controller.c

+ 1
- 1
interface

@@ -1 +1 @@
Subproject commit f21ffa4ce6e35af6fa6c318971c7a58719b4c524
Subproject commit 766599cad32bc948ee64adb9f32de22ab64b9e6c

+ 5
- 2
src/controller.c View File

@@ -483,7 +483,7 @@ rspamd_controller_handle_symbols (struct rspamd_http_connection_entry *conn_ent,
GHashTableIter it;
struct rspamd_symbols_group *gr;
struct rspamd_symbol_def *sym, *cur;
ucl_object_t *obj, *top, *sym_obj;
ucl_object_t *obj, *top, *sym_obj, *group_symbols;
gpointer k, v;

if (!rspamd_controller_check_password (conn_ent, session, msg, FALSE)) {
@@ -502,6 +502,8 @@ rspamd_controller_handle_symbols (struct rspamd_http_connection_entry *conn_ent,
/* Iterate through all symbols */
sym = gr->symbols;

group_symbols = ucl_object_typed_new (UCL_ARRAY);

LL_FOREACH (sym, cur) {
sym_obj = ucl_object_typed_new (UCL_OBJECT);

@@ -516,9 +518,10 @@ rspamd_controller_handle_symbols (struct rspamd_http_connection_entry *conn_ent,
"description", 0, false);
}

ucl_object_insert_key (obj, sym_obj, "rules", 0, false);
ucl_array_append (group_symbols, sym_obj);
}

ucl_object_insert_key (obj, group_symbols, "rules", 0, false);
ucl_array_append (top, obj);
}


Loading…
Cancel
Save