diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-11-03 13:09:42 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-11-03 13:09:42 +0000 |
commit | 004a0c8a75e8fb71b8ba0c47f000c381c03a2967 (patch) | |
tree | ff34fa6b50a89713b20ac46c0fa672428c533a97 /engine/lib/entities.php | |
parent | 05ffc437ef95e84e0438c5b0230b261179b47cca (diff) | |
download | elgg-004a0c8a75e8fb71b8ba0c47f000c381c03a2967.tar.gz elgg-004a0c8a75e8fb71b8ba0c47f000c381c03a2967.tar.bz2 |
Minor tweaks 'cos case does matter...
git-svn-id: https://code.elgg.org/elgg/trunk@2379 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/entities.php')
-rw-r--r-- | engine/lib/entities.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/entities.php b/engine/lib/entities.php index ba376917b..de1093835 100644 --- a/engine/lib/entities.php +++ b/engine/lib/entities.php @@ -1409,7 +1409,7 @@ if (!$count) { $query = "SELECT * from {$CONFIG->dbprefix}entities where "; } else { - $query = "select count(guid) as total from {$CONFIG->dbprefix}entities where "; + $query = "SELECT count(guid) as total from {$CONFIG->dbprefix}entities where "; } foreach ($where as $w) $query .= " $w and "; |