Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Jan 17, 2018
1 parent 5c3b210 commit 81c0263
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/lucee/runtime/config/ConfigImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -3356,7 +3356,7 @@ public int getCFMLWriterType() {
return writerType;
}

private boolean bufferOutput=true;
private boolean bufferOutput=false;


private int externalizeStringGTE=-1;
Expand Down
3 changes: 2 additions & 1 deletion core/src/main/java/lucee/runtime/config/XMLConfigAdmin.java
Original file line number Diff line number Diff line change
Expand Up @@ -2872,7 +2872,8 @@ public void updateBufferOutput(Boolean value) throws SecurityException {
if(!hasAccess) throw new SecurityException("no access to update scope setting");

Element scope=_getRootElement("setting");
scope.setAttribute("buffer-output",Caster.toString(value,""));
scope.setAttribute("buffering-output",Caster.toString(value,""));
if(scope.hasAttribute("buffer-output"))scope.removeAttribute("buffer-output");
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3195,9 +3195,7 @@ else if (hasCS)
// buffer-output
str = null;
if (setting != null) {
str = getAttr(setting,"buffer-output");
if (StringUtil.isEmpty(str))
str = getAttr(setting,"bufferoutput");
str = getAttr(setting,"buffering-output");
}
Boolean b = Caster.toBoolean(str, null);
if (b != null && hasAccess) {
Expand Down
2 changes: 1 addition & 1 deletion loader/build.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project default="core" basedir="." name="Lucee" xmlns:artifact="antlib:org.apache.maven.artifact.ant">

<property name="version" value="5.2.6.35-SNAPSHOT"/>
<property name="version" value="5.2.6.36-SNAPSHOT"/>

<path id="maven-ant-tasks.classpath" path="../ant/lib/maven-ant-tasks-2.1.3.jar" />
<typedef resource="org/apache/maven/artifact/ant/antlib.xml"
Expand Down
2 changes: 1 addition & 1 deletion loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>org.lucee</groupId>
<artifactId>lucee</artifactId>
<version>5.2.6.35-SNAPSHOT</version>
<version>5.2.6.36-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Lucee Loader Build</name>
Expand Down

0 comments on commit 81c0263

Please sign in to comment.