summaryrefslogtreecommitdiffstats
path: root/lib/private/group
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-11-26 12:38:24 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-11-27 11:10:04 +0100
commite1f3abf7a583669ba1fed703365de9e12a76e22c (patch)
tree75cffc34cf486d4b1759160dfb5cd93c4b6f3dd0 /lib/private/group
parent3338eede3ccb2ead223a46fd537b7504bb4786e0 (diff)
downloadnextcloud-server-e1f3abf7a583669ba1fed703365de9e12a76e22c.tar.gz
nextcloud-server-e1f3abf7a583669ba1fed703365de9e12a76e22c.zip
Correctly namespace and autoload DatabaseException
Diffstat (limited to 'lib/private/group')
-rw-r--r--lib/private/group/database.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/group/database.php b/lib/private/group/database.php
index 6bad55c8d5e..2069e99599f 100644
--- a/lib/private/group/database.php
+++ b/lib/private/group/database.php
@@ -220,7 +220,7 @@ class OC_Group_Database extends OC_Group_Backend {
* @param string $gid
* @param string $search
* @return int|false
- * @throws DatabaseException
+ * @throws \OC\DatabaseException
*/
public function countUsersInGroup($gid, $search = '') {
$stmt = OC_DB::prepare('SELECT COUNT(`uid`) AS `count` FROM `*PREFIX*group_user` WHERE `gid` = ? AND `uid` LIKE ?');