Remove unneeded variable

This commit is contained in:
nathangray 2019-02-04 15:51:14 -07:00
parent 09e40c4f84
commit a2189e732e

View File

@ -105,7 +105,7 @@ class Sharing
$path_info = substr($path_info, strlen($_SERVER['SCRIPT_NAME']));
list(, $token/*, $path*/) = preg_split('|[/?]|', $path_info, 3);
list($token, $pw_session) = explode(':', $token);
list($token) = explode(':', $token);
return $token;
}