Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jererc committed Jan 21, 2013
1 parent 61fbd23 commit 0d1164b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CloudKey.php
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ static public function sign_url($url, $secret, $seclevel=CLOUDKEY_SECLEVEL_NONE,
$public_secparams_encoded = '';
if (count($public_secparams) > 0)
{
$public_secparams_encoded = strstr(base64_encode(gzcompress(implode('&', $public_secparams))), '+/', '-_');
$public_secparams_encoded = strtr(base64_encode(gzcompress(implode('&', $public_secparams))), '+/', '-_');
}
$rand = '';
$letters = 'abcdefghijklmnopqrstuvwxyz0123456789';
Expand Down

0 comments on commit 0d1164b

Please sign in to comment.