6
2
Forkuj 0
kopia lustrzana https://github.com/friendica/friendica zsynchronizowano 2025-09-05 06:59:56 +02:00

backtrace errant input to base64url_decode

Ten commit jest zawarty w:
friendica 2012-01-24 16:45:58 -08:00
commit 8ff2bb4cd3

Wyświetl plik

@ -948,6 +948,11 @@ function base64url_encode($s, $strip_padding = false) {
function base64url_decode($s) {
if(is_array($s)) {
logger('base64url_decode: illegal input: ' . print_r(debug_backtrace(), true));
return $s;
}
/*
* // Placeholder for new rev of salmon which strips base64 padding.
* // PHP base64_decode handles the un-padded input without requiring this step