X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=WEB-INF%2Flib%2FttGroup.class.php;h=f85f9097163071101057b959a7833463cb82cdf7;hb=fafb0ae8f7098ffafa6799627891bd40f4811a52;hp=fe8c8a9834749b710d59fbf012db74f9e52faa6e;hpb=a106b7a2db73b3e1fdab428b218212f6f38d7623;p=timetracker.git diff --git a/WEB-INF/lib/ttGroup.class.php b/WEB-INF/lib/ttGroup.class.php index fe8c8a98..f85f9097 100644 --- a/WEB-INF/lib/ttGroup.class.php +++ b/WEB-INF/lib/ttGroup.class.php @@ -101,8 +101,8 @@ class ttGroup { $this->currency = $val['currency']; $this->plugins = $val['plugins']; $this->lock_spec = $val['lock_spec']; - /* $this->workday_minutes = $val['workday_minutes']; + /* $this->custom_logo = $val['custom_logo']; */ $this->config = $val['config']; @@ -124,7 +124,7 @@ class ttGroup { } // Determine active user count in a separate query. - // TODO: If performance becomes an issue, ivestigate combining 2 queries in one. + // TODO: If performance becomes an issue, investigate combining 2 queries in one. // At this time we only need to know if at least 1 active user exists. $sql = "select count(*) as user_count from tt_users". " where group_id = $id and org_id = $org_id and status = 1";