Bugzilla – Attachment 117325 Details for
Bug 27792
Improve jEditable configuration for point of sale fields
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 27792: (follow-up) Double escape the escape
Bug-27792-follow-up-Double-escape-the-escape.patch (text/plain), 1.09 KB, created by
Martin Renvoize (ashimema)
on 2021-02-25 13:56:58 UTC
(
hide
)
Description:
Bug 27792: (follow-up) Double escape the escape
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2021-02-25 13:56:58 UTC
Size:
1.09 KB
patch
obsolete
>From e8a5274cdf85c0523abb0c618bdd40c2dd92d502 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Thu, 25 Feb 2021 13:55:15 +0000 >Subject: [PATCH] Bug 27792: (follow-up) Double escape the escape > >The JSON patturn wasn't getting interpreted correctly for me.. the `\` >characters needed escaping with a second `\`. > >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt >index 1326eba204..23d66d9202 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/pos/pay.tt >@@ -307,7 +307,7 @@ > return value; > },{ > type : 'text', >- pattern : "^\d+(\.\d{2})?$", >+ pattern : "^\\d+(\.\\d{2})?$", > onblur : 'submit', > width : "8em" > }); >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 27792
:
117306
|
117324
|
117325
|
117412
|
117413