Skip to content

Commit 4c62bad

Browse files
committed
finished removing dead code
1 parent b34a29d commit 4c62bad

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3131
- WebUI works properly for users with %Developer without needing to add further SQL privileges (#365)
3232
- Fixed `<UNDEFINED>` error running Import All (#380)
3333
- Discarding changes now recompiles - critical for productions and some other cases (#387)
34+
- Special characters in WebUI git commands now result in the command being executed properly (#369)
3435

3536
## [2.3.1] - 2024-04-30
3637

cls/SourceControl/Git/WebUIDriver.cls

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -91,18 +91,6 @@ ClassMethod HandleRequest(pagePath As %String, InternalName As %String = "", Out
9191
if (pathStart = "git") {
9292
merge data = %request.Data
9393
set args = data("command",1)
94-
#; for {
95-
#; set reference = $query(@reference)
96-
#; merge ^mtempref($i(^mtempref)) = reference
97-
#; quit:reference=""
98-
#; if $qsubscript(reference,3)="O" {
99-
#; set args(@reference)=$qsubscript(reference,1)
100-
#; if $data(%request.Data($qsubscript(reference,1),$qsubscript(reference,2)),argValue)#2 && (argValue '= "") {
101-
#; set args(@reference)=args(@reference)_"="_argValue
102-
#; }
103-
#; }
104-
#; }
105-
10694

10795
// Problem: args(1) might contain $c(10) followed by our stdin value
10896
if $data(args)#2 {

0 commit comments

Comments
 (0)