Bugzilla – Attachment 62694 Details for
Bug 18453
"Export" column is not hidden when ExportCircHistory is off
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 18453: Hide the export column when needed
Bug-18453-Hide-the-export-column-when-needed.patch (text/plain), 1.30 KB, created by
Nick Clemens (kidclamp)
on 2017-04-25 17:46:42 UTC
(
hide
)
Description:
Bug 18453: Hide the export column when needed
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2017-04-25 17:46:42 UTC
Size:
1.30 KB
patch
obsolete
>From 1c70fc04509fadd53696583becdf8af02eff6a6e Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 19 Apr 2017 12:29:26 -0300 >Subject: [PATCH] Bug 18453: Hide the export column when needed >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >If exports_enabled is equal to "0" it will be evaluated to true. > >Signed-off-by: Marc Véron <veron@veron.ch> > >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >--- > koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js >index 8d1454a..932d1b7 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js >@@ -416,7 +416,7 @@ $(document).ready(function() { > } > }, > { >- "bVisible": exports_enabled ? true : false, >+ "bVisible": exports_enabled == 1 ? true : false, > "bSortable": false, > "mDataProp": function ( oObj ) { > var s = "<input type='checkbox' name='itemnumbers' value='" + oObj.itemnumber + "' style='visibility:hidden;' />"; >-- >2.1.4
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 18453
:
62353
|
62362
|
62393
|
62394
|
62399
|
62401
|
62402
| 62694 |
62695