Bugzilla – Attachment 11035 Details for
Bug 8263
Make OPAC stylesheet preferences more consistent
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
8263 Make OPAC stylesheet preferences more consistent (dbrev)
8263-Make-OPAC-stylesheet-preferences-more-consist.patch (text/plain), 1.71 KB, created by
Jonathan Druart
on 2012-07-20 10:21:00 UTC
(
hide
)
Description:
8263 Make OPAC stylesheet preferences more consistent (dbrev)
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2012-07-20 10:21:00 UTC
Size:
1.71 KB
patch
obsolete
>From d0eb07711f53eadaf0307eb4c358e34434a7bb0b Mon Sep 17 00:00:00 2001 >From: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >Date: Mon, 18 Jun 2012 13:53:59 +0200 >Subject: [PATCH] 8263 Make OPAC stylesheet preferences more consistent > (dbrev) > >This patch handles the dbrev for this report. It optionally saves the value of the former opacstylesheet pref into opaclayoutstylesheet. > >June 21, 2012 & July 4, 2012: Rebased. > >Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> >--- > installer/data/mysql/updatedatabase.pl | 14 ++++++++++++++ > 1 files changed, 14 insertions(+), 0 deletions(-) > >diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl >index bb96644..567606d 100755 >--- a/installer/data/mysql/updatedatabase.pl >+++ b/installer/data/mysql/updatedatabase.pl >@@ -5536,6 +5536,20 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { > SetVersion($DBversion); > } > >+$DBversion ="3.09.00.XXX"; >+if(C4::Context->preference("Version") < TransformToNum($DBversion) ) { >+ my $query = "SELECT value FROM systempreferences WHERE variable='opacstylesheet'"; >+ my $remote= $dbh->selectrow_arrayref($query); >+ $dbh->do("DELETE from systempreferences WHERE variable='opacstylesheet'"); >+ if($remote && $remote->[0]) { >+ $query="UPDATE systempreferences SET value=? WHERE variable='opaclayoutstylesheet'"; >+ $dbh->do($query,undef,$remote->[0]); >+ print "NOTE: The URL of your remote opac css file has been moved to preference opaclayoutstylesheet.\n"; >+ } >+ print "Upgrade to $DBversion done (BZ 8263: Make OPAC stylesheet preferences more consistent)\n"; >+ SetVersion($DBversion); >+} >+ > =head1 FUNCTIONS > > =head2 TableExists($table) >-- >1.7.7.3
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 8263
:
10354
|
10355
|
10379
|
10396
|
10633
|
10930
| 11035 |
11036