aboutsummaryrefslogtreecommitdiffstats
path: root/include/auth.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-02-11 19:51:43 -0800
committerfriendica <info@friendica.com>2014-02-11 19:51:43 -0800
commit655b6445d5f3354b0af3b9ee22b33be828499d41 (patch)
tree6d3e8ee4303c88a8dabc4527501fe6c8a1ed235f /include/auth.php
parent95a45a119dd61241ae8d0f0f8eda467cff64d855 (diff)
downloadvolse-hubzilla-655b6445d5f3354b0af3b9ee22b33be828499d41.tar.gz
volse-hubzilla-655b6445d5f3354b0af3b9ee22b33be828499d41.tar.bz2
volse-hubzilla-655b6445d5f3354b0af3b9ee22b33be828499d41.zip
use profile photo on vcard before reverting to xchan photo
Diffstat (limited to 'include/auth.php')
-rw-r--r--include/auth.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/auth.php b/include/auth.php
index a92f998bf..2b7c385fd 100644
--- a/include/auth.php
+++ b/include/auth.php
@@ -52,7 +52,7 @@ function account_verify_password($email,$pass) {
// Also log failed logins to a separate auth log to reduce overhead for server side intrusion prevention
$authlog = get_config('system', 'authlog');
if ($authlog)
- @file_put_contents($authlog, datetime_convert() . ':' . session_id() . ' ' . $error . "\n", FILE_APPEND);
+ @file_put_contents($authlog, datetime_convert() . ':' . session_id() . ' ' . $error . "\n", FILE_APPEND);
return null;
}