We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4173288 commit e83a31bCopy full SHA for e83a31b
1 file changed
api/src/org/labkey/api/audit/query/DefaultAuditTypeTable.java
@@ -169,8 +169,19 @@ protected ColumnInfo resolveColumn(String name)
169
if (col != null)
170
return col;
171
172
- // Handle the old style 'intKey1' and 'key1' columns
173
- String newName = _legacyNameMap.get(FieldKey.fromParts(name));
+ String newName = null;
+
174
+ if (_legacyNameMap.isEmpty())
175
+ {
176
+ // Backward compatibility with widely used legacy name
177
+ if ("Date".equalsIgnoreCase(name))
178
+ newName = "Created";
179
+ }
180
+ else
181
182
+ // Handle the old style 'intKey1' and 'key1' columns
183
+ newName = _legacyNameMap.get(FieldKey.fromParts(name));
184
185
col = super.resolveColumn(newName);
186
187
{
0 commit comments