From c7f273040e9e2e200bbe458d89114a98464c3355 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Thu, 8 Jan 2015 14:21:40 +0100 Subject: [PATCH] fix table name for getList --- apps/user_ldap/lib/mapping/abstractmapping.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/user_ldap/lib/mapping/abstractmapping.php b/apps/user_ldap/lib/mapping/abstractmapping.php index 19f173577f..cb9db83f68 100644 --- a/apps/user_ldap/lib/mapping/abstractmapping.php +++ b/apps/user_ldap/lib/mapping/abstractmapping.php @@ -32,7 +32,7 @@ abstract class AbstractMapping { } /** - * checks whether a provided string represents an exisiting table col + * checks whether a provided string represents an existing table col * @param string $col * @return bool */ @@ -164,7 +164,7 @@ abstract class AbstractMapping { `ldap_dn` AS `dn`, `owncloud_name` AS `name`, `directory_uuid` AS `uuid` - FROM `*PREFIX*ldap_user_mapping`', + FROM `' . $this->getTableName() . '`', $limit, $offset );