From 48f57ba4e6c6271d173f175d42eeeb87631eca7a Mon Sep 17 00:00:00 2001 From: nathangray Date: Fri, 21 Jun 2019 09:34:57 -0600 Subject: [PATCH] Admin - add phpgwai to list of apps excluded when counting entries an account has --- api/src/Accounts.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/Accounts.php b/api/src/Accounts.php index abe55339b7..2c7b6541a8 100644 --- a/api/src/Accounts.php +++ b/api/src/Accounts.php @@ -1100,7 +1100,7 @@ class Accounts $owner_column = Link::get_registry($appname, 'owner'); // Try for automatically finding the modification - if(!is_array($owner_column) && !in_array($appname, array('admin', 'api','etemplate'))) + if(!is_array($owner_column) && !in_array($appname, array('admin', 'api','etemplate','phpgwapi'))) { $tables = $GLOBALS['egw']->db->get_table_definitions($appname); if(!is_array($tables))