X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fsession%2FSession.php;h=0fd8fa8a310f4317a7a7ea19bfa5bed3ec1a882b;hb=5b119a0e442306d90198deead25f6a975513e65e;hp=21db609090fef2d0b70532dfcd1ab4f548d6a0e0;hpb=6d4436c9156acba552db4c70d6cc129f6d0ce6ef;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/session/Session.php b/includes/session/Session.php index 21db609090..0fd8fa8a31 100644 --- a/includes/session/Session.php +++ b/includes/session/Session.php @@ -352,7 +352,7 @@ final class Session implements \Countable, \Iterator, \ArrayAccess { $new = true; } if ( is_array( $salt ) ) { - $salt = join( '|', $salt ); + $salt = implode( '|', $salt ); } return new Token( $secret, (string)$salt, $new ); }