Tadashi Okoshi
slash****@users*****
2005年 10月 27日 (木) 20:15:00 JST
Index: affelio/incoming.cgi
diff -u affelio/incoming.cgi:1.8 affelio/incoming.cgi:1.9
--- affelio/incoming.cgi:1.8 Mon Oct 24 17:52:49 2005
+++ affelio/incoming.cgi Thu Oct 27 20:15:00 2005
@@ -16,7 +16,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
-# $Id: incoming.cgi,v 1.8 2005/10/24 08:52:49 slash5234 Exp $
+# $Id: incoming.cgi,v 1.9 2005/10/27 11:15:00 slash5234 Exp $
use strict;
@@ -74,7 +74,7 @@
############################################################################
my $passAB;
try{
- $passAB = $af->{fm}->get_attribute_by_afid($referrer, "password");
+ $passAB = $af->getFM->get_attribute_by_afid($referrer, "password");
}catch Error with{
my $e = shift;
error($q, "Error from FriendManager.\n" . $e);
@@ -180,7 +180,7 @@
#lookup our friend table with FID_visitorAFID
my $tmp1;
try{
- $tmp1 = $af->{fm}->get_attribute_by_afid($FID_visitorAFID, "password");
+ $tmp1 = $af->getFM->get_attribute_by_afid($FID_visitorAFID, "password");
}catch Error with{
my $e = shift;
error($q, "Error from FriendManager.\n" . $e);
Index: affelio/index.cgi
diff -u affelio/index.cgi:1.14 affelio/index.cgi:1.15
--- affelio/index.cgi:1.14 Mon Oct 24 17:52:49 2005
+++ affelio/index.cgi Thu Oct 27 20:15:00 2005
@@ -16,7 +16,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
-# $Id: index.cgi,v 1.14 2005/10/24 08:52:49 slash5234 Exp $
+# $Id: index.cgi,v 1.15 2005/10/27 11:15:00 slash5234 Exp $
use strict;
@@ -213,8 +213,8 @@
$output_data{"friendlist_all_IF"} = \@friendlist_all_IF;
try{
- $output_data{"friend__F1count"} = $af->{fm}->get_F1_count();
- $output_data{"friend__F2count"} = $af->{fm}->get_F2_count();
+ $output_data{"friend__F1count"} = $af->getFM->get_F1_count();
+ $output_data{"friend__F2count"} = $af->getFM->get_F2_count();
}catch Error with{
my $e = shift;
error($q, "Affelio: error from FriendManager\n" . $e);
@@ -249,7 +249,7 @@
}
try{
- $af->{alm}->save_log($afid, $visitor_nickname, $visitor_type);
+ $af->getALM->save_log($afid, $visitor_nickname, $visitor_type);
}catch Error with{
my $e = shift;
error($q, "Affelio: error in AccessLogging\n" . $e);
Index: affelio/outgoing.cgi
diff -u affelio/outgoing.cgi:1.7 affelio/outgoing.cgi:1.8
--- affelio/outgoing.cgi:1.7 Mon Oct 24 17:52:49 2005
+++ affelio/outgoing.cgi Thu Oct 27 20:15:00 2005
@@ -16,7 +16,7 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-# $Id: outgoing.cgi,v 1.7 2005/10/24 08:52:49 slash5234 Exp $
+# $Id: outgoing.cgi,v 1.8 2005/10/27 11:15:00 slash5234 Exp $
use strict;
@@ -95,7 +95,7 @@
# retrieve passAB
my $passAB="";
try{
- $passAB = $af->{fm}->get_attribute_by_afid($dest_URL, "password");
+ $passAB = $af->getFM->get_attribute_by_afid($dest_URL, "password");
}catch Error with{
my $e = shift;
error($q, "Error from FriendManager.\n" . $e);