hide edit link in myopac/holds. show basic user info in myopac/prefs
[evergreen-equinox.git] / Open-ILS / src / perlmods / lib / OpenILS / WWW / EGWeb / CGIUTF8.pm
1 package OpenILS::WWW::EGWeb::CGIUTF8;
2
3 # This is just a wrapper for TT around the real package,
4 # which is OpenILS::WWW::CGIUTF8
5
6 use strict;
7 use warnings;
8 use base 'Template::Plugin';
9 use OpenILS::WWW::CGIUTF8;
10
11 sub new {
12     my $class   = shift;
13     my $context = shift;
14     new OpenILS::WWW::CGIUTF8(@_);
15 }
16
17 1;