[LON-CAPA-cvs] cvs: loncom /interface lonmsg.pm

www lon-capa-cvs@mail.lon-capa.org
Wed, 26 Jun 2002 20:41:55 -0000


www		Wed Jun 26 16:41:55 2002 EDT

  Modified files:              
    /loncom/interface	lonmsg.pm 
  Log:
  Bug 509 - shows subject of critical messages in addition to sender and date.
  
  
Index: loncom/interface/lonmsg.pm
diff -u loncom/interface/lonmsg.pm:1.33 loncom/interface/lonmsg.pm:1.34
--- loncom/interface/lonmsg.pm:1.33	Mon Jun 24 10:33:21 2002
+++ loncom/interface/lonmsg.pm	Wed Jun 26 16:41:55 2002
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # Routines for messaging
 #
-# $Id: lonmsg.pm,v 1.33 2002/06/24 14:33:21 www Exp $
+# $Id: lonmsg.pm,v 1.34 2002/06/26 20:41:55 www Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -314,7 +314,8 @@
         $content{'message'}=~s/\n/\<br\>/g;
         $result.='<hr>From: <b>'.$content{'sendername'}.'@'.
             $content{'senderdomain'}.'</b> ('.$content{'time'}.
-            ')<br><blockquote>'.$content{'message'}.'</blockquote>'.
+            ')<br>Subject: '.$content{'subject'}.
+            '<br><blockquote>'.$content{'message'}.'</blockquote>'.
             '<input type=submit name="rec_'.$_.'" value="Confirm Receipt">'.
             '<input type=submit name="reprec_'.$_.'" '.
                   'value="Confirm Receipt and Reply">';