Tadashi Okoshi
slash****@users*****
2005年 6月 28日 (火) 16:44:52 JST
Index: affelio/admin.cgi diff -u affelio/admin.cgi:1.13 affelio/admin.cgi:1.14 --- affelio/admin.cgi:1.13 Tue Jun 28 02:50:26 2005 +++ affelio/admin.cgi Tue Jun 28 16:44:52 2005 @@ -6,7 +6,7 @@ # http://affelio.jp/ (Japan) # http://affelio.jp/ (USA and other area) # -# $Id: admin.cgi,v 1.13 2005/06/27 17:50:26 slash5234 Exp $ +# $Id: admin.cgi,v 1.14 2005/06/28 07:44:52 slash5234 Exp $ use strict; @@ -171,7 +171,8 @@ try{ $ret_msg=Affelio::App::Admin::Messaging::send_message($af, $q); }catch Affelio::exception::CommunicationException with{ - $err_msg='<AF_M text="Could not send message.">'; + my $E = shift; + $err_msg='<AF_M text="Could not send message."><BR>' . $E; }; $TMPL_FILE = "$af->{site__fs_root}/templates/" . Index: affelio/outgoing.cgi diff -u affelio/outgoing.cgi:1.1.1.1 affelio/outgoing.cgi:1.2 --- affelio/outgoing.cgi:1.1.1.1 Tue Jun 14 12:53:29 2005 +++ affelio/outgoing.cgi Tue Jun 28 16:44:52 2005 @@ -6,7 +6,7 @@ # http://affelio.jp/ (Japan) # http://affelio.jp/ (USA and other area) # -# $Id: outgoing.cgi,v 1.1.1.1 2005/06/14 03:53:29 slash5234 Exp $ +# $Id: outgoing.cgi,v 1.2 2005/06/28 07:44:52 slash5234 Exp $ use strict; @@ -128,8 +128,8 @@ $plain_msg = get_timestamp() . "*" . get_expire_stamp(1,0,0) . "*" . $q->remote_addr . "*" . - url_encode("anonymous") . "*" . - url_encode("anonymous") . "*" . + url_encode($visitor_afid) . "*" . + url_encode($visitor_nickname) . "*" . "pb" . '*'; } debug_print("outgoing.cgi: plain_msg= $plain_msg\n");