moved email template to fhtw addon; einheiten column visibility default false since pausen are not represented; backend code cleanup; phrase fix;

This commit is contained in:
Johann Hoffmann
2024-11-11 09:56:43 +01:00
parent ec9e73180d
commit 96335a7979
3 changed files with 76 additions and 17 deletions
+3 -4
View File
@@ -177,7 +177,7 @@ class FilterCmptLib
$session = $this->getSession();
// If session is NOT empty -> a filter was already loaded
if (false && $session != null)
if ($session != null)
{
// Retrieve the filterId stored in the session
$sessionFilterId = $this->_getSessionElement(FilterCmptLib::FILTER_ID);
@@ -221,7 +221,7 @@ class FilterCmptLib
}
// If the session is empty -> first time that this filter is loaded
if (true || $session == null)
if ($session == null)
{
// Load filter definition data from DB
$definition = $this->_loadDefinition(
@@ -1173,5 +1173,4 @@ class FilterCmptLib
return $filterName;
}
}
}