Skip to content

Commit

Permalink
bug fix in helpers.php
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Apr 21, 2024
1 parent e84f853 commit e6aac41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/helpers/helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ function clearAuthCookie() {

unset($_COOKIE['series_id']);
unset($_COOKIE['remember_token']);
setcookie('series_id', null, -1, '/');
setcookie('remember_token', null, -1, '/');
setcookie('series_id', '', -1, '/');
setcookie('remember_token', '', -1, '/');
}
/**
*
Expand Down
2 changes: 1 addition & 1 deletion src/includes/footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<footer class="main-footer text-sm">
<strong><a href="https://github.com/giandonatoinverso/PHP-Dynamic-Qr-code" target="_blank">PHP Qrcode Generator</a> by </strong> Giandonato Inverso
<div class="float-right d-none d-sm-inline-block">
<b>Version</b> 2.2.6
<b>Version</b> 2.2.7
</div>
</footer>
</div>
Expand Down

0 comments on commit e6aac41

Please sign in to comment.