Bug 6459 : Needless call to C4::Context->dbh in C4::Templates::themelanguage()
As far as I can tell, $dbh is never used again in the scope in which it is created. This patch simply removes the line. Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
This commit is contained in:
parent
1b5805e336
commit
a54716e50d
1 changed files with 0 additions and 1 deletions
|
@ -191,7 +191,6 @@ sub themelanguage {
|
|||
$lang = $languages[0] || 'en';
|
||||
}
|
||||
my $theme = 'prog'; # in the event of theme failure default to 'prog' -fbcit
|
||||
my $dbh = C4::Context->dbh;
|
||||
my @themes;
|
||||
if ( $interface eq "intranet" ) {
|
||||
@themes = split " ", C4::Context->preference("template");
|
||||
|
|
Loading…
Reference in a new issue