i18n, RT#12515
[freeside.git] / httemplate / autohandler
index 3a24417..c676d3d 100644 (file)
@@ -1,13 +1,22 @@
 % $m->call_next;
 <%init>
+
   dbh->{'private_profile'} = {} if UNIVERSAL::can(dbh, 'sprintProfile');
+
+  my $locale =  $FS::CurrentUser::CurrentUser->option('locale')
+             || FS::Conf->new->config('locale')
+             || 'en_US';
+  $locale =~ s/_/-/g;
+  $lh = FS::L10N->get_handle($locale) || die "Unknown locale $locale";
+
 </%init>
 <%filter>
 
-my $profile = '';
 if ( UNIVERSAL::can(dbh, 'sprintProfile') ) {
 
-  if ( lc($r->content_type) eq 'text/html'
+  my $profile = '';
+
+  if ( lc($r->content_type) =~ /^text\/html/
        && $FS::CurrentUser::CurrentUser->option('show_db_profile')
      )
   {
@@ -29,15 +38,16 @@ if ( UNIVERSAL::can(dbh, 'sprintProfile') ) {
   if ( $FS::CurrentUser::CurrentUser->option('save_db_profile') ) {
     #my $file = %%%FREESIDE_LOG%%%; #substitute here?  maybe get from FS.pm?
     my $file = '/usr/local/etc/freeside/'; #bah
-    $file .= "dbix_profile..$$.". time;
+    $file .= "dbix_profile.$$.". time;
     dbh->setLogFile($file);
     dbh->printProfile();
   }
 
   dbh->{'private_profile'} = {};
+
+  s/(<\/BODY>[\s\n]*<\/HTML>[\s\n]*)$/$profile$1/i;
 }
 
-s/(<\/BODY>[\s\n]*<\/HTML>[\s\n]*)$/$profile$1/i;
 </%filter>
 <%cleanup>
    dbh->commit();