Skip to content

Commit b1faf2e

Browse files
committed
Use single quote
1 parent ea1188d commit b1faf2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/VWF/Display.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ sub _types
608608

609609
sub _generate_csrf_token($self) {
610610
my $timestamp = time();
611-
my $random = sprintf("%08x", int(rand(0xFFFFFFFF)));
611+
my $random = sprintf('%08x', int(rand(0xFFFFFFFF)));
612612
my $secret = $self->{config}->{security}->{csrf_secret} // 'default_secret';
613613

614614
my $token_data = "$timestamp:$random";

0 commit comments

Comments
 (0)