Skip to content

Commit

Permalink
Fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
lewmilburn committed Apr 29, 2024
1 parent 587cb42 commit 39edb27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
6 changes: 1 addition & 5 deletions Plugins/ControlPanel/Assets/ChkValues.php
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
<?php

$Checksum['CoreSettings'] = 'ccbbcc9517184f067358d6ff8260581ebcef33a2eff82b1e2187bfc7e6149b9a751e83c734b6219aaea343d5e602496f45a093782fa921a48b03fd21f3f9f639';
$Checksum['CoreDeveloper'] = '117650a0c6008af2880d0ccd18e89717856c258705f23d4c2730e7cdb83b268e972e88a4e952e184e5a77c821cb9263d816bec7157e5bf8a4be505802e8d2c94';
$Checksum['CoreTheme'] = '9072134c2cd53de761944c831aa5ccbd995fe81c329490f6c4748b1c54f9d9def271782f71f2adda88b9860b91fcf41af65698f49679da1b0e937d642021982c';
<?php $Checksum['CoreSettings'] = '6a7e19f4cb2b923c5b6d023ad71c79ad0cf7b22d6b0b27e494cc099530905369030fe278301e6dd94df30c5c6f44951044ee6397c73c9d57d1809a5baf2f26ea'; $Checksum['CoreDeveloper'] = 'd8ac0d6566de0980d2853e6b8e403e533cc2b8dd3b37e54f2f2883300302973f887aefee47c12bd8c28533c6ca741bb82a018288c782a623f990698dd4455f88';
2 changes: 1 addition & 1 deletion Plugins/ControlPanel/Views/Alert.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
use Saturn\AccountManager\Permissions;
use ControlPanel\Checksums;

$Permissions = new Permissions($_SESSION['uuid']);
$Permissions = new Permissions($_SESSION['UUID']);

if (isset($_GET['resetconfirm'])) {
if ($Permissions->HasPermission(['administrator','panel_settings'],'OR')) {
Expand Down
2 changes: 1 addition & 1 deletion Processes/Saturn/DatabaseManager/DBMS.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function __construct()
}
}

public function Escape(string $String): string
public function Escape($String): string
{
return htmlspecialchars($String);
}
Expand Down

0 comments on commit 39edb27

Please sign in to comment.