We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3196275 commit c957721Copy full SHA for c957721
1 file changed
plugins/ice-repo/settings.php
@@ -68,7 +68,7 @@
68
69
// Reestablish those session vars in an ongoing way
70
if (isset($_SESSION['token'])) {
71
- $_SESSION['token'] = $_SESSION['token'];
+ $token = $_SESSION['token'] = $_SESSION['token'];
72
}
73
if (isset($_SESSION['username'])) {
74
$username = $_SESSION['username'] = $_SESSION['username'];
@@ -118,4 +118,4 @@ function stripslashes_deep($value) {
118
$_COOKIE = (isset($_COOKIE) && !empty($_COOKIE)) ? array_map('stripslashes_deep', $_COOKIE) : array();
119
$_REQUEST = (isset($_REQUEST) && !empty($_REQUEST)) ? array_map('stripslashes_deep', $_REQUEST) : array();
120
121
-?>
+?>
0 commit comments