Skip to content

Commit

Permalink
Reput opened bracket on same line for hash_equals function
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCartpenter committed May 16, 2024
1 parent 5323dfe commit ee03b44
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions upload/system/helper/general.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ function oc_token($length = 32) {
* http://php.net/manual/en/function.hash-equals.php
*/
if (!function_exists('hash_equals')) {
function hash_equals($known_string, $user_string)
{
function hash_equals($known_string, $user_string) {
$known_string = (string) $known_string;
$user_string = (string) $user_string;

Expand Down

0 comments on commit ee03b44

Please sign in to comment.