[Koha-bugs] [Bug 6190] Custom field removal from patron entry screens

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed Jun 15 15:31:47 CEST 2011


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6190

Magnus Enger <magnus at enger.priv.no> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
       Patch Status|Needs Signoff               |Failed QA

--- Comment #11 from Magnus Enger <magnus at enger.priv.no> 2011-06-15 13:31:47 UTC ---
Marking this as failed QA for two reasons: 

1. Hiding all fields in a group does not hide the whole group - see attached
screenshot. 

2. There is a problem with escaping in updatedatabase.pl - it looks like this: 

$dbh->do("INSERT INTO `systempreferences`
(variable,value,explanation,options,type)
VALUES('BorrowerUnwantedField','','Name the fields you don\'t need to store for
a patron\'s account',NULL,'free')");

should be this: 

$dbh->do("INSERT INTO `systempreferences`
(variable,value,explanation,options,type)
VALUES('BorrowerUnwantedField','','Name the fields you don''t need to store for
a patron''s account',NULL,'free')");

('' instead of \')

Can't wait to have this feature in place, though!

-- 
Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA Contact for the bug.


More information about the Koha-bugs mailing list