mirror of
https://github.com/friendica/friendica
synced 2025-04-24 03:10:11 +00:00
Yeah, and again notices ... (#5536)
* Yeah, and again notices ... * And some more * Block access without given user name * Reformatting
This commit is contained in:
parent
71b1638d9a
commit
9d0f18c0b3
8 changed files with 82 additions and 68 deletions
|
@ -179,7 +179,7 @@ function authenticate_success($user_record, $login_initial = false, $interactive
|
|||
* The cookie will be renewed automatically.
|
||||
* The week ensures that sessions will expire after some inactivity.
|
||||
*/
|
||||
if ($_SESSION['remember']) {
|
||||
if (!empty($_SESSION['remember'])) {
|
||||
logger('Injecting cookie for remembered user ' . $a->user['nickname']);
|
||||
new_cookie(604800, $user_record);
|
||||
unset($_SESSION['remember']);
|
||||
|
@ -225,7 +225,7 @@ function can_write_wall($owner)
|
|||
} else {
|
||||
$cid = 0;
|
||||
|
||||
if (is_array($_SESSION['remote'])) {
|
||||
if (!empty($_SESSION['remote'])) {
|
||||
foreach ($_SESSION['remote'] as $visitor) {
|
||||
if ($visitor['uid'] == $owner) {
|
||||
$cid = $visitor['cid'];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue