fix table name for getList

remotes/origin/fix-10825
Arthur Schiwon 11 years ago
parent 9668405ec7
commit c7f273040e
  1. 4
      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
);

Loading…
Cancel
Save