Well, apparently I was using the mp1 method to set the stuff in my Fixup handler... which is the part that is contrary to how the documentation says it works. Instead of returning an Apache::Table object, it returns the exact same was as it had in mp1...
package MyFixupHandler; .... sub handler { my $r = shift; $r->pnotes('key' => "value"); return OK; } By the documentation I assumed the following was the correct way... my $atref = $r->pnotes(); $atref->set('key',"value"); -- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html