We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af4c564 commit c914b9fCopy full SHA for c914b9f
package.json
@@ -5,7 +5,7 @@
5
"printableName": "Cache Web Terminal",
6
"description": "Web-based terminal emulator for Caché administering.",
7
"author": "ZitRo",
8
- "version": "4.6.0",
+ "version": "4.6.1",
9
"gaID": "UA-83005064-2",
10
"releaseNumber": 26,
11
"scripts": {
src/cls/WebTerminal/Handlers.cls
@@ -70,6 +70,10 @@ loop
70
} elseif (flag = "e") {
71
set client.childNamespace = $LISTGET(chunk, 1)
72
set err = $LISTGET(chunk, 2)
73
+ if $IsObject(data) && (data.bufferOutput = 1) {
74
+ do client.outputBuffer.Write(err)
75
+ quit // break for loop
76
+ }
77
if (err '= "") {
78
do client.Send(
79
"execError",
0 commit comments