Bug 13975: Remove compilation warning about encoding pragma deprecation
authorJonathan Druart <jonathan.druart@biblibre.com>
Thu, 9 Apr 2015 14:05:59 +0000 (16:05 +0200)
committerTomas Cohen Arazi <tomascohen@gmail.com>
Mon, 20 Apr 2015 12:53:10 +0000 (09:53 -0300)
commitdbd8602280192e4e4cd9915ad8c345a2d40dfb72
tree15292ddf80cd44696f844ae75414618d934ad022
parent3e3559e763ad66cdc32b92896d5be1681dccebb9
Bug 13975: Remove compilation warning about encoding pragma deprecation

Test plan:
0/ Does not apply the patch
1/ Launch the export_borrowers.pl script to export data with unicode characters
 % perl misc/export_borrowers.pl -w "borrowernumber=42" --field borrowernumber --field surname --field firstname
  Use of the encoding pragma is deprecated at misc/export_borrowers.pl
  7874,JOUBU,صةصةصة
2/ Apply this patch
3/ Repeat 1
 % perl misc/export_borrowers.pl -w "borrowernumber=42" --field borrowernumber --field surname --field firstname
  7874,JOUBU,صةصةصة

Note that the deprecated message is gone and the encoding is correct.

Signed-off-by: Frederic Demians <f.demians@tamil.fr>
  I confirm the warning (on Perl version above 5.14). And that the patch fix
  the warning.

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
misc/export_borrowers.pl