Bugzilla – Attachment 125461 Details for
Bug 29133
Wrong string format in select2.inc
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 29133: (follow-up) Fix for arguament mismatch
Bug-29133-follow-up-Fix-for-arguament-mismatch.patch (text/plain), 1.08 KB, created by
Martin Renvoize (ashimema)
on 2021-09-29 16:04:55 UTC
(
hide
)
Description:
Bug 29133: (follow-up) Fix for arguament mismatch
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2021-09-29 16:04:55 UTC
Size:
1.08 KB
patch
obsolete
>From d691fee467960ee6b2586963d41762e79f35f31c Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Wed, 29 Sep 2021 17:03:18 +0100 >Subject: [PATCH] Bug 29133: (follow-up) Fix for arguament mismatch > >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > koha-tmpl/intranet-tmpl/prog/js/select2.js | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/select2.js b/koha-tmpl/intranet-tmpl/prog/js/select2.js >index ef000ec7f0..42383dd547 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/select2.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/select2.js >@@ -10,8 +10,8 @@ $.fn.select2.defaults.set("language", { > var n = args.input.length - args.maximum; > return __("Please delete %s character(s)").format(n); > }, >- inputTooShort:function(e){ >- var n = e.minimum - args.input.length; >+ inputTooShort:function(args){ >+ var n = args.minimum - args.input.length; > return __("Please enter %s or more characters").format(n); > }, > formatResult: function(item) { >-- >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 29133
:
125445
|
125460
|
125461
|
125646
|
125647