aboutsummaryrefslogtreecommitdiffstats
path: root/include/Scrape.php
diff options
context:
space:
mode:
authorZach Prezkuta <fermion@gmx.com>2012-06-14 20:58:25 -0600
committerZach Prezkuta <fermion@gmx.com>2012-07-05 14:26:42 -0600
commit168ae40dd25ee827e9bcb01e27e52c0e203c21d6 (patch)
tree570cd0800706590eb993c82ee4ce80cb422cade6 /include/Scrape.php
parent360c35e438f4ecb6a60cefde8ab8b0e3f6f0c57f (diff)
downloadvolse-hubzilla-168ae40dd25ee827e9bcb01e27e52c0e203c21d6.tar.gz
volse-hubzilla-168ae40dd25ee827e9bcb01e27e52c0e203c21d6.tar.bz2
volse-hubzilla-168ae40dd25ee827e9bcb01e27e52c0e203c21d6.zip
add rudimentary locking capability to Friendica functions
Diffstat (limited to 'include/Scrape.php')
-rw-r--r--include/Scrape.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Scrape.php b/include/Scrape.php
index 4f53effe9..b784650cd 100644
--- a/include/Scrape.php
+++ b/include/Scrape.php
@@ -432,7 +432,7 @@ function probe_url($url, $mode = PROBE_NORMAL) {
intval(local_user())
);
if(count($x) && count($r)) {
- $mailbox = construct_mailbox_name($r[0]);
+ $mailbox = construct_mailbox_name($r[0]);
$password = '';
openssl_private_decrypt(hex2bin($r[0]['pass']),$password,$x[0]['prvkey']);
$mbox = email_connect($mailbox,$r[0]['user'],$password);