Quote:
Originally Posted by DemOnstar
I like it....
I do have difficulty in getting it to go above the quick edit box as I am totally baffled when the term 'uncomment' a line is used..
Instructions could be clearer but still, works well enough. Marked as installed.
Thanks...
|
In PHP, "//" comments out a line so that it is not parsed. So, if you want to uncomment it, you would remove the "//" at the front. And, conversely, to comment out a line, you would add a "//" to the beginning of the line and then that line is ignored by php.