fix table name for getList

This commit is contained in:
Arthur Schiwon 2015-01-08 14:21:40 +01:00
parent 9668405ec7
commit c7f273040e
1 changed files with 2 additions and 2 deletions

View File

@ -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
);