Skip to content

Commit

Permalink
fix spacing and error message
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnRDOrazio committed Jul 16, 2024
1 parent b7d9846 commit 73aa5e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions program/lib/Roundcube/rcube_config.php
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,8 @@ public function load_from_file($file)

foreach ($this->resolve_paths($file) as $fpath) {
if ($fpath && is_file($fpath)) {
if(false === is_readable($fpath)) {
trigger_error($fpath . ' is not readable. Please check ownership of file', \E_USER_WARNING);
if (false === is_readable($fpath)) {
trigger_error($fpath . ' is not readable', \E_USER_WARNING);
} else {
// use output buffering, we don't need any output here
ob_start();
Expand Down

0 comments on commit 73aa5e7

Please sign in to comment.