[Rt-commit] r12711 - in rt/branches/3.8-TESTING: lib/RT/Interface/Web

sartak at bestpractical.com sartak at bestpractical.com
Wed May 28 13:10:02 EDT 2008


Author: sartak
Date: Wed May 28 13:10:00 2008
New Revision: 12711

Modified:
   rt/branches/3.8-TESTING/   (props changed)
   rt/branches/3.8-TESTING/lib/RT/Interface/Web/Standalone.pm

Log:
 r61127 at onn:  sartak | 2008-05-28 13:00:51 -0400
 Make Standalone's net_server an accessor


Modified: rt/branches/3.8-TESTING/lib/RT/Interface/Web/Standalone.pm
==============================================================================
--- rt/branches/3.8-TESTING/lib/RT/Interface/Web/Standalone.pm	(original)
+++ rt/branches/3.8-TESTING/lib/RT/Interface/Web/Standalone.pm	Wed May 28 13:10:00 2008
@@ -82,11 +82,10 @@
     RT::Interface::Web::Handler->CleanupRequest();
 }
 
-#sub net_server { 
-# use RT::Interface::Web::Standalone::PreFork;
-# 'RT::Interface::Web::Standalone::PreFork'
-#}
-
-
+sub net_server {
+    my $self = shift;
+    $self->{rt_net_server} = shift if @_;
+    return $self->{rt_net_server};
+}
 
 1;


More information about the Rt-commit mailing list