Adam Prime schrieb:
Michael Ludwig wrote:
http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlAddVar_

|   my @foos = $r->dir_config('foo');

This is wrong. You have to say:

    my @foos = $r->dir_config->get('foo');

Committed revision 734312, which updates the two examples on that page
that require use of the underlying APR::Table get method.

Thank you!

(The printed version of the User's Guide also has the mistake, but it is
probably generated from the same source documents, so it should be fine.)

Michael Ludwig

Reply via email to