From adcea47ce54943ba47e447f340dc39e6e24f9251 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Wed, 11 Jan 2017 21:01:37 +0100 Subject: [PATCH] fixed case sensitivity --- lam/lib/types.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/lib/types.inc b/lam/lib/types.inc index 53905e1a..8a8b6551 100644 --- a/lam/lib/types.inc +++ b/lam/lib/types.inc @@ -383,7 +383,7 @@ class ListAttribute { */ public function getAlias() { if ($this->isPredefined()) { - $name = substr($this->attributeSpec, 1); + $name = strtolower(substr($this->attributeSpec, 1)); $hash_table = getListAttributeDescriptions($this->scope); $hash_table = array_change_key_case($hash_table, CASE_LOWER); if (isset($hash_table[$name])) {