Commit 2c1e02c9096f000a6244caf66cbe1b51f117383a

Authored by David RENÉ
1 parent 0a7f3ba8

update the plugin information according to the new component (version and date)

src/web_controller/hayamiki.anubis
... ... @@ -271,9 +271,9 @@ define (WEB_Session) -> WEB_Controller_Result
271 271  
272 272 success(page) then
273 273 with
274   - search_words = get_String_list(lwa, "q_word[]"),
275   - search_fields = get_String_list(lwa, "search_field[]"),
276   - active_filters = get_String_list(lwa, "active_filter[]"), //active filter format is "column_name,id"
  274 + search_words = get_List_String(lwa, "q_word[]"),
  275 + search_fields = get_List_String(lwa, "search_field[]"),
  276 + active_filters = get_List_String(lwa, "active_filter[]"), //active filter format is "column_name,id"
277 277 limit = get_Int(lwa, "per_page", 10), //limit
278 278 and_or = get_String(lwa, "and_or", "OR"),
279 279 sidx = get_String(lwa, "sidx", "id"),
... ... @@ -519,7 +519,7 @@ define (WEB_Session) -> WEB_Controller_Result
519 519 error_result,
520 520 success(controller) then
521 521 //get the name of editor to use
522   - with select_fields = get_String_list(lwa, "select_fields"),
  522 + with select_fields = get_List_String(lwa, "select_fields"),
523 523 // with view_name = get_String(lwa, "view_name", "default"),
524 524 // _filter_name = get_String(lwa, "filter_name", ""),
525 525 search = get_String(lwa, "_search", "false"),
... ...
src/web_controller/hayamiki_plugin.anubis
... ... @@ -34,6 +34,8 @@ global define WEB_Plugin
34 34 web_plugin(
35 35 "HAYAMIKI",
36 36 "BASE",
  37 + "1.14.0",
  38 + _Int_to_ISO_8601_datetime(to_Int(__TIME__)),
37 39 plugin_get_controller,
38 40 plugin_get_typed_content
39 41 )
... ...
xlib @ 6f6feb0696b
1   -Subproject commit 85496d9ff3cacf322513b9e210d95636f0c1030c
  1 +Subproject commit 6f6feb0696be82594640c4faa812d13c57eb8ce7
... ...