Permalink
Show file tree
Hide file tree
2 changes: 2 additions & 0 deletions
2
elFinder.Net.Core/elFinder.Net.Core/Models/Command/PutCommand.cs
2 changes: 2 additions & 0 deletions
2
elFinder.Net.Core/elFinder.Net.Core/Models/Response/ErrorResponse.cs
3 changes: 2 additions & 1 deletion
3
elFinder.Net.Core/elFinder.Net.Drivers.FileSystem/Extensions/IDirectoryExtensions.cs
3 changes: 2 additions & 1 deletion
3
elFinder.Net.Core/elFinder.Net.Drivers.FileSystem/Extensions/IFileExtensions.cs
2 changes: 1 addition & 1 deletion
2
elFinder.Net.Core/elFinder.Net.Drivers.FileSystem/FileSystemDirectory.cs
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Finish security patch 1.2.4
- Loading branch information
1 parent
c84b4b2
commit 5498c8a
Showing
15 changed files
with
179 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
elFinder.Net.Core/elFinder.Net.Core/Exceptions/InvalidDirNameException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| using elFinder.Net.Core.Models.Response; | ||
|
|
||
| namespace elFinder.Net.Core.Exceptions | ||
| { | ||
| public class InvalidDirNameException : ConnectorException | ||
| { | ||
| public InvalidDirNameException() | ||
| { | ||
| ErrorResponse = new ErrorResponse(this) | ||
| { | ||
| error = ErrorResponse.InvalidDirName | ||
| }; | ||
| } | ||
| } | ||
| } |
15 changes: 15 additions & 0 deletions
15
elFinder.Net.Core/elFinder.Net.Core/Exceptions/InvalidFileNameException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| using elFinder.Net.Core.Models.Response; | ||
|
|
||
| namespace elFinder.Net.Core.Exceptions | ||
| { | ||
| public class InvalidFileNameException : ConnectorException | ||
| { | ||
| public InvalidFileNameException() | ||
| { | ||
| ErrorResponse = new ErrorResponse(this) | ||
| { | ||
| error = ErrorResponse.InvalidFileName | ||
| }; | ||
| } | ||
| } | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.