Summary: | MIME missing from sys prefs interface | ||
---|---|---|---|
Product: | Koha | Reporter: | Nicole C. Engard <nengard> |
Component: | System Administration | Assignee: | Galen Charlton <gmcharlt> |
Status: | CLOSED FIXED | QA Contact: | Bugs List <koha-bugs> |
Severity: | normal | ||
Priority: | P5 - low | CC: | paul.poulain, pianohacker |
Version: | Main | ||
Hardware: | PC | ||
OS: | All | ||
GIT URL: | Change sponsored?: | --- | |
Patch complexity: | --- | Documentation contact: | |
Documentation submission: | Text to go in the release notes: | ||
Version(s) released in: | Circulation function: |
Description
Chris Cormack
2010-05-21 01:24:02 UTC
Patch pushed for inclusion in 3.2 (removing the syspref). Please test and close. This bug is mentioned in: bug 4176: remove references to unimplemented system preference MIME http://lists.koha-community.org/pipermail/koha-patches/2010-October/012703.html sysprefs.sql no longer has this LINE in HEAD, fixing the bug as stated. While the 3.2 sysprefs editor doesn't show sysprefs that systempreferences.pl knows about, we should theoretically remove this syspref from the database. Do we just miss a database update here removing the removed pref from old databases? Appears to be fixed - I cannot find references to the old sys pref in the code base and the preferenece has been removed in a database update: $DBversion = "3.02.00.001"; if (C4::Context->preference("Version") < TransformToNum($DBversion)) { $dbh->do(q{DELETE FROM systempreferences WHERE variable IN ( 'holdCancelLength', 'PINESISBN', 'sortbynonfiling', 'TemplateEncoding', 'OPACSubscriptionDisplay', 'OPACDisplayExtendedSubInfo', 'OAI-PMH:Set', 'OAI-PMH:Subset', 'libraryAddress', 'kohaspsuggest', 'OrderPdfTemplate', 'marc', 'acquisitions', 'MIME') } |