Merge pull request #90 from tranmh/fix_case_sensitive_filename

Fix case sensitive filename
This commit is contained in:
Giandonato Inverso
2024-02-27 13:25:17 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ class DynamicQrcode {
if(!isset($qrcode["id_owner"]))
$this->failure("You cannot delete this qrcode");
require_once BASE_PATH . '/lib/users/Users.php';
require_once BASE_PATH . '/lib/Users/Users.php';
$users = new Users();
$user = $users->getUser($_SESSION['user_id']);
+1 -1
View File
@@ -399,7 +399,7 @@ class StaticQrcode {
if(!isset($qrcode["id_owner"]))
$this->failure("You cannot delete this qrcode");
require_once BASE_PATH . '/lib/users/Users.php';
require_once BASE_PATH . '/lib/Users/Users.php';
$users = new Users();
$user = $users->getUser($_SESSION['user_id']);