Bugzilla – Attachment 49862 Details for
Bug 16194
Do not consider xslt as valid theme dir in LangInstaller.pm
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 16194: Do not consider xslt as valid theme dir in LangInstaller.pm
Bug-16194-Do-not-consider-xslt-as-valid-theme-dir-.patch (text/plain), 1.58 KB, created by
Tomás Cohen Arazi (tcohen)
on 2016-04-04 14:30:50 UTC
(
hide
)
Description:
Bug 16194: Do not consider xslt as valid theme dir in LangInstaller.pm
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2016-04-04 14:30:50 UTC
Size:
1.58 KB
patch
obsolete
>From a2daffc598a14bbee47ef4ead736deb943634c33 Mon Sep 17 00:00:00 2001 >From: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> >Date: Mon, 4 Apr 2016 10:59:37 -0300 >Subject: [PATCH] Bug 16194: Do not consider xslt as valid theme dir in > LangInstaller.pm > >Bug 15527 add an xslt dir, LangInstaller.pm must ingnore that dir. > >To test: >1) Verify the problem on current master >Update translation for any lang, will see errors > >2) Apply the patch > >3) Update again, no errors > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >Works as expected. >--- > misc/translator/LangInstaller.pm | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/misc/translator/LangInstaller.pm b/misc/translator/LangInstaller.pm >index 5244945..683897d 100644 >--- a/misc/translator/LangInstaller.pm >+++ b/misc/translator/LangInstaller.pm >@@ -110,7 +110,7 @@ sub new { > > # OPAC themes > opendir my $dh, $context->config('opachtdocs'); >- for my $theme ( grep { not /^\.|lib/ } readdir($dh) ) { >+ for my $theme ( grep { not /^\.|lib|xslt/ } readdir($dh) ) { > push @{$self->{interface}}, { > name => "OPAC $theme", > dir => "$opachtdocs/$theme", >@@ -123,7 +123,7 @@ sub new { > # search for strings on staff & opac marc files > my $dirs = $context->config('intrahtdocs') . '/prog'; > opendir $fh, $context->config('opachtdocs'); >- for ( grep { not /^\.|\.\.|lib$/ } readdir($fh) ) { >+ for ( grep { not /^\.|\.\.|lib$|xslt/ } readdir($fh) ) { > $dirs .= ' ' . "$opachtdocs/$_"; > } > push @{$self->{interface}}, { >-- >2.7.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 16194
:
49860
|
49862
|
49881