Bugzilla – Attachment 3850 Details for
Bug 5917
Switch Koha to use Template::Toolkit
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Follow-up patch (1 of 3)
bug_5917-follow-1.patch (text/plain), 1.23 KB, created by
Jared Camins-Esakov
on 2011-04-10 20:18:49 UTC
(
hide
)
Description:
Follow-up patch (1 of 3)
Filename:
MIME Type:
Creator:
Jared Camins-Esakov
Created:
2011-04-10 20:18:49 UTC
Size:
1.23 KB
patch
obsolete
>From f9103747adb8dd648848c4398a396a01b2c178e7 Mon Sep 17 00:00:00 2001 >From: Jared Camins-Esakov <jcamins@bywatersolutions.com> >Date: Sun, 10 Apr 2011 12:59:37 -0400 >Subject: [PATCH 1/3] Bug 5917 follow-up: Quiet errors in C4::Templates >Content-Type: text/plain; charset="UTF-8" > >There were a few errors about unitialized variables in C4::Templates. > >Signed-off-by: Jared Camins-Esakov <jcamins@bywatersolutions.com> >--- > C4/Templates.pm | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/C4/Templates.pm b/C4/Templates.pm >index e81f0dd..ff47c88 100644 >--- a/C4/Templates.pm >+++ b/C4/Templates.pm >@@ -90,10 +90,10 @@ sub output { > $vars->{themelang} .= '/' . $self->theme . '/' . $self->lang; > $vars->{yuipath} = > ( C4::Context->preference("yuipath") eq "local" >- ? $self->{themelang} . "/lib/yui" >+ ? $vars->{themelang} . "/lib/yui" > : C4::Context->preference("yuipath") ); > $vars->{interface} = >- ( $vars->{interface} ne 'intranet' ? '/opac-tmpl' : '/intranet-tmpl' ); >+ ( $self->{interface} ne 'intranet' ? '/opac-tmpl' : '/intranet-tmpl' ); > $vars->{theme} = $self->theme; > $vars->{opaccolorstylesheet} = > C4::Context->preference('opaccolorstylesheet'); >-- >1.7.2.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 5917
:
3505
| 3850 |
3851
|
3852
|
4248
|
4375