Differences
This shows you the differences between the selected revisions of the page.
2018-07-05 | 2021-06-14 | ||
typo (martin) | no summary (danielfeiler) | ||
Line 85: | Line 85: | ||
if (($padding -gt 0) -and ($padding -lt 4)) | if (($padding -gt 0) -and ($padding -lt 4)) | ||
{ | { | ||
- | $base64 = "=" * $padding | + | $base64 += "=" * $padding # adding trailing equal signs if the value of $padding is greater 0 but lower 4 |
} | } | ||