RE: does notes() work with custom_response()?

2000-09-28 Thread Doug MacEachern
On Thu, 14 Sep 2000, brian d foy wrote: okay - i got that to work. i was getting confused because notes from the handler() were showing up in the current request's notes for the custom_response() handler *and* (as i've discovered) in the previous notes. should that happen? it shouldn't,

RE: does notes() work with custom_response()?

2000-09-14 Thread Geoffrey Young
try this: --- Yours.pmThu Sep 14 08:04:00 2000 +++ Mine.pm Thu Sep 14 08:02:49 2000 @@ -57,8 +57,8 @@ { my $r = shift; - my $notes = $r-notes; - my $pnotes = $r-pnotes; + my $notes = $r-prev-notes || $r-notes; + my $pnotes = $r-prev-pnotes ||

RE: does notes() work with custom_response()?

2000-09-14 Thread brian d foy
On Thu, 14 Sep 2000, Geoffrey Young wrote: i was using: - my $notes = $r-notes; - my $pnotes = $r-pnotes; you suggested: + my $notes = $r-prev-notes || $r-notes; + my $pnotes = $r-prev-pnotes || $r-pnotes; neither of those worked for me. did they work for you?

RE: does notes() work with custom_response()?

2000-09-14 Thread Geoffrey Young
-Original Message- From: brian d foy [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 14, 2000 9:09 AM To: [EMAIL PROTECTED] Subject: RE: does notes() work with custom_response()? On Thu, 14 Sep 2000, Geoffrey Young wrote: i was using: - my $notes = $r

RE: does notes() work with custom_response()?

2000-09-14 Thread Geoffrey Young
-Original Message- From: brian d foy [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 14, 2000 9:58 AM To: [EMAIL PROTECTED] Subject: RE: does notes() work with custom_response()? On Thu, 14 Sep 2000, Geoffrey Young wrote: remember that custom_response() is a tie