From ce56572ff428b721a6a938a2f83fdbf16ed66fcc Mon Sep 17 00:00:00 2001 From: Robin Sheat Date: Wed, 30 Apr 2014 16:28:21 +1200 Subject: [PATCH] Bug 12163 - fix adding new quotes Something changed somewhere (maybe a new jQuery or datatables version) and the javascript that redrew the table row after a new quote was saved stopped working. This fixes the call to the datatables function so that it matches the API. To test: * Go and add a quote. * Note that when you press enter after finishing the quote, the line stops being an editor, and becomes just a display, like it should. Signed-off-by: Kyle M Hall --- .../intranet-tmpl/prog/en/modules/tools/quotes.tt | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt index 007b2cb..25aceaa 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt @@ -116,6 +116,7 @@ var aRow = oTable.fnUpdate( newQuote, node, + undefined, false, false ); -- 1.7.2.5