Bugzilla – Attachment 57955 Details for
Bug 17629
Koha::Biblio - Remove ModBiblioframework
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17629: Koha::Biblio - Remove ModBiblioframework
Bug-17629-KohaBiblio---Remove-ModBiblioframework.patch (text/plain), 2.03 KB, created by
Jonathan Druart
on 2016-12-05 12:15:24 UTC
(
hide
)
Description:
Bug 17629: Koha::Biblio - Remove ModBiblioframework
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2016-12-05 12:15:24 UTC
Size:
2.03 KB
patch
obsolete
>From c52551c8d95a915a986a1b08ce33adfd4bbda69a Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 15 Nov 2016 11:10:51 +0000 >Subject: [PATCH] Bug 17629: Koha::Biblio - Remove ModBiblioframework > >There is only one call to C4::Biblio::ModBiblioframework, it's called >just before C4::Biblio::ModBiblio in cataloguing/addbiblio.pl >At first glance this call does not seems useful: all the subroutines >called from ModBiblio send the frameworkcode in parameter. > >I'd go to remove it, but I'd like to get confirmation by others. > >No test plan here, you need a good pair of eyes and deep into the >C4::Biblio code. >--- > C4/Biblio.pm | 17 ----------------- > cataloguing/addbiblio.pl | 1 - > 2 files changed, 18 deletions(-) > >diff --git a/C4/Biblio.pm b/C4/Biblio.pm >index 6d64e80..b00a10a 100644 >--- a/C4/Biblio.pm >+++ b/C4/Biblio.pm >@@ -110,7 +110,6 @@ BEGIN { > # To modify something > push @EXPORT, qw( > &ModBiblio >- &ModBiblioframework > &ModZebra > &UpdateTotalIssues > &RemoveAllNsb >@@ -386,22 +385,6 @@ sub _strip_item_fields { > } > } > >-=head2 ModBiblioframework >- >- ModBiblioframework($biblionumber,$frameworkcode); >- >-Exported function to modify a biblio framework >- >-=cut >- >-sub ModBiblioframework { >- my ( $biblionumber, $frameworkcode ) = @_; >- my $dbh = C4::Context->dbh; >- my $sth = $dbh->prepare( "UPDATE biblio SET frameworkcode=? WHERE biblionumber=?" ); >- $sth->execute( $frameworkcode, $biblionumber ); >- return 1; >-} >- > =head2 DelBiblio > > my $error = &DelBiblio($biblionumber); >diff --git a/cataloguing/addbiblio.pl b/cataloguing/addbiblio.pl >index 4615998..1929d0c 100755 >--- a/cataloguing/addbiblio.pl >+++ b/cataloguing/addbiblio.pl >@@ -837,7 +837,6 @@ if ( $op eq "addbiblio" ) { > BiblioAutoLink( $record, $frameworkcode ); > } > if ( $is_a_modif ) { >- ModBiblioframework( $biblionumber, $frameworkcode ); > ModBiblio( $record, $biblionumber, $frameworkcode ); > } > else { >-- >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 17629
:
57487
|
57955
|
57970
|
58625