Skip to content

Commit

Permalink
LDEV-3382 - check for old and new variable path
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Sep 6, 2024
1 parent 1c96ec9 commit cfa42eb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions core/src/main/java/resource/context/admin/debug/Modern.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,10 @@ if(structKeyExists(arguments.custom, "metrics_Charts")) {
local.times=arguments.debugging.times;

var time=getTickCount();
var _cgi=structKeyExists(arguments.debugging,'cgi')?arguments.debugging.cgi:cgi;

// CGI
if(!isNull(arguments.debugging.scope.cgi)) local._cgi=arguments.debugging.scope.cgi;
else if(!isNull(arguments.debugging.cgi)) local._cgi=arguments.debugging.cgi;
else local._cgi=cgi;



Expand Down
2 changes: 1 addition & 1 deletion loader/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<project default="core" basedir="." name="Lucee"
xmlns:resolver="antlib:org.apache.maven.resolver.ant">

<property name="version" value="6.1.1.79-RC"/>
<property name="version" value="6.1.1.80-SNAPSHOT"/>

<taskdef uri="antlib:org.apache.maven.resolver.ant" resource="org/apache/maven/resolver/ant/antlib.xml">
<classpath>
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>6.1.1.79-RC</version>
<version>6.1.1.80-SNAPSHOT</version>
<packaging>jar</packaging>

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

0 comments on commit cfa42eb

Please sign in to comment.