mirror of
https://github.com/xevidos/codiad.git
synced 2025-01-08 22:11:55 +01:00
Changed permission denied messages
This commit is contained in:
parent
3d5df9aaff
commit
4dab45e0e7
1 changed files with 2 additions and 2 deletions
|
@ -532,7 +532,7 @@ class Filemanager extends Common {
|
|||
} else {
|
||||
|
||||
$this->status = "error";
|
||||
$this->message = "No delete access.";
|
||||
$this->message = "You do not have permission to delete this file.";
|
||||
}
|
||||
$response["status"] = $this->status;
|
||||
$response["message"] = $this->message;
|
||||
|
@ -646,7 +646,7 @@ class Filemanager extends Common {
|
|||
} else {
|
||||
|
||||
$this->status = "error";
|
||||
$this->message = "Write access is denied.";
|
||||
$this->message = "You do not have write permission to this file.";
|
||||
}
|
||||
} else {
|
||||
|
||||
|
|
Loading…
Reference in a new issue