Bug 20504: Fix lang attribute in html tag on systempreferences page
authorKatrin Fischer <katrin.fischer.83@web.de>
Thu, 9 Aug 2018 17:46:09 +0000 (17:46 +0000)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Fri, 24 Aug 2018 10:44:27 +0000 (11:44 +0100)
commit32b01b264277a77dbb79133f5af8eeecbe64d997
tree3559f54ec52da0a432843942eddea3e55d6c525a
parentb1aa841e1ed21dc300dc188aa76fd57b33044c95
Bug 20504: Fix lang attribute in html tag on systempreferences page

On the system preferences page the lang attribute of the
html tag is always empty.

To test:
- Go to systempreferences
- Check the html source and look at the html tag,
  it should read: <html lang="">
- Apply patch
- Check the html source again: <html lang="en">
  Verify the language code shown matches the currently
  selected language in the staff interface
- Verify the language system preferences work correctly

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
The problem was actually that
  $lang = $template->param( 'lang' );
should certainly be $lang = $input->param( 'lang' );
and, as it, it overrides the value of 'lang' passed from C4::Auth

Signed-off-by: Josef Moravec <josef.moravec@gmail.com>
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
(cherry picked from commit 56c50a66169f956584050a8630a71cfa7d5984cb)
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
admin/preferences.pl