diff options
author | friendica <info@friendica.com> | 2012-06-12 16:17:34 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-12 16:17:34 -0700 |
commit | 832d9eeaaf7c439f3f8802d35e0e4a40509bddf5 (patch) | |
tree | 01e7fbd804b1972076492031da45687033a50f21 /mod | |
parent | 08b3126dae0cb93c3ea5ae47629ab8e6f7c37143 (diff) | |
download | volse-hubzilla-832d9eeaaf7c439f3f8802d35e0e4a40509bddf5.tar.gz volse-hubzilla-832d9eeaaf7c439f3f8802d35e0e4a40509bddf5.tar.bz2 volse-hubzilla-832d9eeaaf7c439f3f8802d35e0e4a40509bddf5.zip |
more fixes
Diffstat (limited to 'mod')
-rw-r--r-- | 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 864fb375d..3c76034c3 100644 --- a/mod/dfrn_request.php +++ b/mod/dfrn_request.php @@ -172,7 +172,7 @@ function dfrn_request_post(&$a) { $r = q("select id from contact where uid = %d and url = '%s' and `site-pubkey` = '%s limit 1", intval(local_user()), - $dbesc($dfrn_url), + dbesc($dfrn_url), $parms['key'] // this was already escaped ); if(count($r)) { |