Mistake in Litespeed Wiki page - how do I advise admin to correct?

#3
here is fine... it was just a tiny error in the last line of the redis test:

var_dump( $this->_conn->ping() ) ; // Should give a `+PONG`

in that it fails with the $this keyword. I used:


var_dump( $conn->ping() ) ; // Should give a `+PONG`
 
Top