File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
21
21
- Changing remotes in the git project settings pages now works if remote is not already defined (#746 )
22
22
- User-specific basic mode setting can now be changed when settingsUIReadOnly is set (#775 )
23
23
- Fixed an error displaying the Web UI after reverting a commit (#776 )
24
+ - Fixed errors exporting items when directory casing does not match mappings (#781 )
24
25
- Improved accessibility of UI when tabbing through items (#764 )
25
26
26
27
## [ 2.11.0] - 2025-04-23
Original file line number Diff line number Diff line change @@ -748,11 +748,11 @@ ClassMethod Exists(ByRef pFilename) As %Boolean
748
748
If ##class (%File ).Exists (pFilename ) {
749
749
Return 1
750
750
}
751
- Set tDirectory = ##class (%File ).ParentDirectoryName (pFilename )
751
+ Set tDirectory = ##class (%File ).GetDirectory (pFilename )
752
752
If '##class (%File ).DirectoryExists (tDirectory ) {
753
753
Return 0
754
754
}
755
- Set tName = $Piece ( pFilename , tDirectory , 2 , * )
755
+ Set tName = ##class ( %File ). GetFilename ( pFilename )
756
756
Set tFileName = $Piece (tName , " ." , 1 , * - 1 )
757
757
Set tFileExt = $Piece (tName , " ." , *)
758
758
for tExt = $$$LOWER(tFileExt ), $$$UPPER(tFileExt ) {
@@ -3219,4 +3219,3 @@ ClassMethod IsSchemaStandard(pName As %String = "") As %Boolean [ Internal ]
3219
3219
}
3220
3220
3221
3221
}
3222
-
You can’t perform that action at this time.
0 commit comments