diff options
author | Tobias Hößl <tobias@hoessl.eu> | 2012-02-28 13:42:12 +0000 |
---|---|---|
committer | Tobias Hößl <tobias@hoessl.eu> | 2012-02-28 13:42:12 +0000 |
commit | 36a1a43f06dc2a0d55463c83154cce55fa3948ad (patch) | |
tree | d6ab66790474aaead1663762449db08faa064b07 /mod | |
parent | f48556cbc08c0600e256f5964a553c666ee66372 (diff) | |
download | volse-hubzilla-36a1a43f06dc2a0d55463c83154cce55fa3948ad.tar.gz volse-hubzilla-36a1a43f06dc2a0d55463c83154cce55fa3948ad.tar.bz2 volse-hubzilla-36a1a43f06dc2a0d55463c83154cce55fa3948ad.zip |
Avoid notices
Diffstat (limited to 'mod')
-rwxr-xr-x | mod/dfrn_request.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/dfrn_request.php b/mod/dfrn_request.php index bc159137d..452fec166 100755 --- a/mod/dfrn_request.php +++ b/mod/dfrn_request.php @@ -43,7 +43,7 @@ function dfrn_request_post(&$a) { return; - if($_POST['cancel']) { + if(x($_POST, 'cancel')) { goaway(z_root()); } |