diff options
author | rvelices <rv-github@modusoptimus.com> | 2014-04-13 04:43:00 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2014-04-13 04:43:00 +0000 |
commit | e6a38c4172e34741db95925826d206dbe9d68e16 (patch) | |
tree | fd049600000aff22120823e49ab0f4a7519cbb85 | |
parent | 1ac859971834b304edb71566ba2d348f31956d68 (diff) |
fux php warning (one of my prev commit)
git-svn-id: http://piwigo.org/svn/trunk@28164 68402e56-0260-453c-a942-63ccdbb3a9ee
-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'])), ) ); |