[kwlug-disc] PHP code question

Chris Frey cdfrey at foursquare.net
Wed Sep 7 16:46:42 EDT 2011


On Wed, Sep 07, 2011 at 04:50:45PM -0400, Bill Traynor wrote:
> On Wed, Sep 7, 2011 at 15:30, John Van Ostrand <john at netdirect.ca> wrote:
> 
> > ----- Original Message -----
> > > On Wed, Sep 7, 2011 at 15:04, Bill Traynor < btraynor at gmail.com >
> > > wrote:
> > > && arg(1) == 'tips)
> >
> > Now you need to find out what module or what configuration sent that
> > string. I'd try grepping for it.
> >
> 
> Interesting.
> 
> sudo grep -irl "'tips)" *
> 
> returned nothing.

"'tips" would be data... you want to grep for the code, specifically
excluding the data.

Something like:

grep -rl "if ( arg(0) == '.*' && is_numeric(arg(1)) && arg(2) == '.*') { return TRUE; }" *

You may need to take various pieces of the code, and grep through all the
modules you have.

- Chris





More information about the kwlug-disc mailing list