[LON-CAPA-cvs] cvs: loncom /enrollment Autoupdate.pl

albertel lon-capa-cvs-allow@mail.lon-capa.org
Tue, 29 May 2007 21:02:21 -0000


albertel		Tue May 29 17:02:21 2007 EDT

  Modified files:              
    /loncom/enrollment	Autoupdate.pl 
  Log:
  - style police
  
  
Index: loncom/enrollment/Autoupdate.pl
diff -u loncom/enrollment/Autoupdate.pl:1.6 loncom/enrollment/Autoupdate.pl:1.7
--- loncom/enrollment/Autoupdate.pl:1.6	Tue May 29 16:43:17 2007
+++ loncom/enrollment/Autoupdate.pl	Tue May 29 17:02:21 2007
@@ -1,7 +1,7 @@
 #!/usr/bin/perl
 #
 # Automated Userinfo update script
-# $Id: Autoupdate.pl,v 1.6 2007/05/29 20:43:17 raeburn Exp $
+# $Id: Autoupdate.pl,v 1.7 2007/05/29 21:02:21 albertel Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -60,8 +60,8 @@
             }
         }
         next if (!$run_update);
-        open (my $fh,">>$logfile");
-        print $fh "********************\n".localtime(time).' '.&mt('Autoupdate messages start for domain: [_1]',$dom).' --'."\n";
+        open(my $fh,">>$logfile");
+        print $fh ("********************\n".localtime(time).' '.&mt('Autoupdate messages start for domain: [_1]',$dom).' --'."\n");
         # get user information
         my (%instusers,%instids);
         next if (&localenroll::allusers_info($dom,\%instusers,\%instids) ne 'ok');
@@ -151,7 +151,7 @@
                         } else {
                             if (!exists($users{$instids{$userhash{'id'}}})) {
                                 $unamechg{$uname} = $instids{$userhash{'id'}};
-                                print $fh &mt('Username change to [_1] detected for [_2] in domain [_3].',$unamechg{$uname},$uname,$dom)."\n";
+                                print $fh (&mt('Username change to [_1] detected for [_2] in domain [_3].',$unamechg{$uname},$uname,$dom)."\n");
                             }
                         }
                     }
@@ -161,10 +161,10 @@
         if (keys(%possnames) > 0) {
             foreach my $uname (keys(%possnames)) {
                 my $altnames = join(' or ',@{$possnames{$uname}});
-                print $fh &mt('Possible username change to [_1] detected for [_2] in domain [_3].',$altnames,$uname,$dom)."\n";
+                print $fh (&mt('Possible username change to [_1] detected for [_2] in domain [_3].',$altnames,$uname,$dom)."\n");
             }
         }
-        print $fh "-- ".localtime(time).' '.&mt('Autoupdate messages end')."\n*******************\n\n";
+        print $fh ("-- ".&Apache::lonlocal::locallocaltime(time).' '.&mt('Autoupdate messages end')."\n*******************\n\n");
         close($fh);
     }