Skip to content

Commit

Permalink
Update custom.php
Browse files Browse the repository at this point in the history
  • Loading branch information
skerbis authored Mar 23, 2024
1 parent 8a3c822 commit 80d4b79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/custom.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ public static function showconfig() {

if (file_exists($configPath)) {
$configContent = file_get_contents($configPath);
echo '<pre>' . htmlspecialchars($configContent) . '</pre>';
return '<pre>' . htmlspecialchars($configContent) . '</pre>';
} else {
echo '<pre>Config not found</pre>';
return '<pre>Config not found</pre>';
}
}

Expand Down

0 comments on commit 80d4b79

Please sign in to comment.