luca regini wrote: > I need to write an input filter that is able to change the value of some > cookies. However the name of the cookie to be changed is a per- directory > value. So i have an input filter whose behavior depends programmatically > from per-directory configuration. How should i gain information about per > -dir configuration from within a filter?? > Thanks in advance > Luca >
Same as from anywhere else. But you don't want to do that in an input filter. Use the header_parser hook. Or, if it needs to happen before/after some other module which views cookies in a different hook, move as appropriate. -- Nick Kew
