]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix table name for getList
authorArthur Schiwon <blizzz@owncloud.com>
Thu, 8 Jan 2015 13:21:40 +0000 (14:21 +0100)
committerArthur Schiwon <blizzz@owncloud.com>
Thu, 8 Jan 2015 13:21:40 +0000 (14:21 +0100)
apps/user_ldap/lib/mapping/abstractmapping.php

index 19f173577f525f6145a76751ea4d498e844ecefc..cb9db83f68306bb7d2160401adf124c8964f5833 100644 (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
                );