Browse Source

Why is this escaped?

pull/40/head
Michael Foster 11 years ago
parent
commit
3ed15565b0
  1. 2
      inc/functions.php

2
inc/functions.php

@ -1769,7 +1769,7 @@ function generate_tripcode($name) {
// generate salt
$salt = substr($trip . 'H..', 1, 2);
$salt = preg_replace('/[^\.-z]/', '.', $salt);
$salt = preg_replace('/[^.-z]/', '.', $salt);
$salt = strtr($salt, ':;<=>?@[\]^_`', 'ABCDEFGabcdef');
if ($secure) {

Loading…
Cancel
Save