From: Arthur Schiwon Date: Thu, 8 Jan 2015 13:21:40 +0000 (+0100) Subject: fix table name for getList X-Git-Tag: v8.0.0alpha2~21^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c7f273040e9e2e200bbe458d89114a98464c3355;p=nextcloud-server.git fix table name for getList --- diff --git a/apps/user_ldap/lib/mapping/abstractmapping.php b/apps/user_ldap/lib/mapping/abstractmapping.php index 19f173577f5..cb9db83f683 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 );