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']))
if ($_GET['n'])
(isset($_GET['n']))