diff options
Diffstat (limited to '')
-rw-r--r-- | comments.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/comments.php b/comments.php index fa59e0917..d196a181b 100644 --- a/comments.php +++ b/comments.php @@ -303,8 +303,8 @@ $template->set_filenames(array('comments'=>'comments.tpl')); $template->assign( array( 'F_ACTION'=>PHPWG_ROOT_PATH.'comments.php', - 'F_KEYWORD'=> htmlspecialchars(stripslashes($_GET['keyword'])), - 'F_AUTHOR'=> htmlspecialchars(stripslashes($_GET['author'])), + 'F_KEYWORD'=> htmlspecialchars(stripslashes(@$_GET['keyword'])), + 'F_AUTHOR'=> htmlspecialchars(stripslashes(@$_GET['author'])), ) ); |