[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cgiapp] CGI::App 3.2_mls3 available


Hi Mark,

Mark Stosberg wrote:

>Hello,
>
>I've rolled another proposed 3.2 release:
>
>http://mark.stosberg.com/perl/CGI-Application-3.2_mls3.tar.gz
>  
>
Alas, you seem to have mis-integrated the documentation fix that I 
posted.  The patch was to change

    $output_ref = \$new_output;

to

    $$output_ref = $new_output;

Unfortunately, you've changed it to:

    $output_ref = $new_output;

which also won't work!

Just to be sure, here's a patch against your latest release candidate 
(3.2_mls3):

=====
--- Application.pm.orig    2003-11-27 13:07:28.000000000 +0000
+++ Application.pm    2003-11-27 14:14:37.727993300 +0000
@@ -1126,7 +1126,7 @@
     $new_output .= "</table>";
 
     # Replace old output with new output
-    $output_ref = $new_output;
+    $$output_ref = $new_output;
   }
 
 
=====

Cheers,
- Steve



------------------------------------------------
Radan Computational Ltd.

The information contained in this message and any files transmitted with it are confidential and intended for the addressee(s) only.  If you have received this message in error or there are any problems, please notify the sender immediately.  The unauthorized use, disclosure, copying or alteration of this message is strictly forbidden.  Note that any views or opinions presented in this email are solely those of the author and do not necessarily represent those of Radan Computational Ltd.  The recipient(s) of this message should check it and any attached files for viruses: Radan Computational will accept no liability for any damage caused by any virus transmitted by this email.


---------------------------------------------------------------------
Web Archive:  http://www.mail-archive.com/suppressed/
              http://marc.theaimsgroup.com/?l=cgiapp&r=1&w=2
To unsubscribe, e-mail: suppressed
For additional commands, e-mail: suppressed


Mail converted by mhonarc 2.6.15
This archive provided courtesy of JSW4.NET, Internet Hosting Services for Small Business.