diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-10-12 20:29:04 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-10-12 20:29:04 -0700 |
commit | 033935c19406c8468ed75fdd15a3a532f4e25319 (patch) | |
tree | ad73289f296bf14d6cc6977e41af88fd2f1909d6 /mod/dfrn_request.php | |
parent | 3c440f70c66953735d01841453fa6a7ed244ef1c (diff) | |
download | volse-hubzilla-033935c19406c8468ed75fdd15a3a532f4e25319.tar.gz volse-hubzilla-033935c19406c8468ed75fdd15a3a532f4e25319.tar.bz2 volse-hubzilla-033935c19406c8468ed75fdd15a3a532f4e25319.zip |
cleanup to ensure protocol version is passed properly. We will need it if/when any incompatible protocol changes are introduced.
Diffstat (limited to 'mod/dfrn_request.php')
-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 f6a85fbab..3c16e2560 100644 --- a/mod/dfrn_request.php +++ b/mod/dfrn_request.php @@ -197,7 +197,7 @@ function dfrn_request_post(&$a) { } - if($network == 'dfrn') { + if($network === 'dfrn') { $ret = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' LIMIT 1", intval($uid), dbesc($url) |