diff options
author | Friendika <info@friendika.com> | 2010-11-16 15:38:56 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-11-16 15:38:56 -0800 |
commit | 22f7ffc2d71576acf16b71c2018cf92a39a73e78 (patch) | |
tree | 5ec1e9abb9c0ee56e575b7ba0984bb82bb1664c3 | |
parent | efd8ab6c720bb404fb62e7bf35716602c0a7cef2 (diff) | |
download | volse-hubzilla-22f7ffc2d71576acf16b71c2018cf92a39a73e78.tar.gz volse-hubzilla-22f7ffc2d71576acf16b71c2018cf92a39a73e78.tar.bz2 volse-hubzilla-22f7ffc2d71576acf16b71c2018cf92a39a73e78.zip |
enumerate required php modules
-rw-r--r-- | INSTALL | 1 | ||||
-rw-r--r-- | mod/dfrn_confirm.php | 3 |
2 files changed, 2 insertions, 2 deletions
@@ -9,6 +9,7 @@ local .htaccess file encryption support - PHP *command line* access with register_argc_argv set to true in the php.ini file + - curl, gd, and openssl extensions - Mysql 5.x diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index fe9c04f85..aa751507a 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -419,8 +419,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { } $r = q("SELECT * FROM `contact` WHERE `dfrn-id` = '%s' LIMIT 1", - dbesc($decrypted_dfrn_id), - intval($local_uid) + dbesc($decrypted_dfrn_id) ); if(count($r)) { $message = t('The ID provided by your system is a duplicate on our system. It should work if you try again.'); |