Tadashi Okoshi
slash****@users*****
2006年 8月 9日 (水) 14:12:17 JST
Index: affelio/lib/Affelio/App/Standalone/Public/Incoming.pm
diff -u affelio/lib/Affelio/App/Standalone/Public/Incoming.pm:1.2 affelio/lib/Affelio/App/Standalone/Public/Incoming.pm:1.3
--- affelio/lib/Affelio/App/Standalone/Public/Incoming.pm:1.2 Sun Apr 30 20:26:01 2006
+++ affelio/lib/Affelio/App/Standalone/Public/Incoming.pm Wed Aug 9 14:12:17 2006
@@ -14,7 +14,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.pm,v 1.2 2006/04/30 11:26:01 slash5234 Exp $
+# $Id: Incoming.pm,v 1.3 2006/08/09 05:12:17 slash5234 Exp $
package Affelio::App::Standalone::Public::Incoming;
{
@@ -245,7 +245,8 @@
}
}
-exit(1);
+ $af->DESTROY;
+ return();
}
Index: affelio/lib/Affelio/App/Standalone/Public/Index.pm
diff -u affelio/lib/Affelio/App/Standalone/Public/Index.pm:1.5 affelio/lib/Affelio/App/Standalone/Public/Index.pm:1.6
--- affelio/lib/Affelio/App/Standalone/Public/Index.pm:1.5 Mon Jun 26 04:34:51 2006
+++ affelio/lib/Affelio/App/Standalone/Public/Index.pm Wed Aug 9 14:12:17 2006
@@ -14,7 +14,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.pm,v 1.5 2006/06/25 19:34:51 slash5234 Exp $
+# $Id: Index.pm,v 1.6 2006/08/09 05:12:17 slash5234 Exp $
package Affelio::App::Standalone::Public::Index;
{
@@ -124,7 +124,8 @@
$af->{userpref__toppage_app_path};
print "Location: $abs_next_URL", "\n\n";
- exit(1);
+ $af->DESTROY;
+ return();
}
######################################################
@@ -135,8 +136,8 @@
#Site info
#################
$output_data{site__web_root} = $af->{site__web_root};
- $output_data{site__user_afid} = $af->{site__user_afid};
$output_data{site__skin_path} = $af->{site__web_root} . "/skins/" . $af->{userpref__skin};
+ $output_data{site__user_afid} = $af->{site__user_afid};
$output_data{site__locale} = $af->{site__locale};
###################
##For compatibility...
@@ -365,6 +366,7 @@
######################################################
$a = $af->getNghrNews->get_one();
+ $af->DESTROY;
}#method
}
Index: affelio/lib/Affelio/App/Standalone/Public/Outgoing.pm
diff -u affelio/lib/Affelio/App/Standalone/Public/Outgoing.pm:1.2 affelio/lib/Affelio/App/Standalone/Public/Outgoing.pm:1.3
--- affelio/lib/Affelio/App/Standalone/Public/Outgoing.pm:1.2 Sun Apr 30 20:26:01 2006
+++ affelio/lib/Affelio/App/Standalone/Public/Outgoing.pm Wed Aug 9 14:12:17 2006
@@ -14,7 +14,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.pm,v 1.2 2006/04/30 11:26:01 slash5234 Exp $
+# $Id: Outgoing.pm,v 1.3 2006/08/09 05:12:17 slash5234 Exp $
package Affelio::App::Standalone::Public::Outgoing;
{
@@ -132,7 +132,8 @@
debug_print("StandAlone::outgoing.cgi: passAB=$passAB\n");
if(!defined($passAB) || $passAB eq ""){
print $q->redirect($dest_URL);
- exit(1);
+ $af->DESTROY;
+ return();
}
@@ -231,6 +232,7 @@
print $q->redirect($forwarding_to);
}
+ $af->DESTROY;
}
}
1;