Comments page undefined index bug & fix

When editing comments with one page of comments cuases an indefined index notice:

`Notice: Undefined index: n in path/to/admin.php on line 598`

The fix is to check if n is set:
`if ($_GET['n'])` => if `(isset($_GET['n']))`
Sign In or Register to comment.