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/sites.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/sites.php')
-rw-r--r-- | engine/lib/sites.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/sites.php b/engine/lib/sites.php index 7b02424d5..f7d3407ae 100644 --- a/engine/lib/sites.php +++ b/engine/lib/sites.php @@ -270,7 +270,7 @@ if ($row) { // Exists and you have access to it
- if ($exists = get_data_row("select guid from {$CONFIG->dbprefix}sites_entity where guid = {$guid}")) { + if ($exists = get_data_row("SELECT guid from {$CONFIG->dbprefix}sites_entity where guid = {$guid}")) { $result = update_data("UPDATE {$CONFIG->dbprefix}sites_entity set name='$name', description='$description', url='$url' where guid=$guid"); if ($result!=false) { |