aboutsummaryrefslogtreecommitdiffstats
path: root/mod/import.php
diff options
context:
space:
mode:
authorZach Prezkuta <fermion@gmx.com>2013-05-12 09:40:54 -0600
committerZach Prezkuta <fermion@gmx.com>2013-05-12 09:40:54 -0600
commit24d088d43be7cc03a0975360d7542b578c48369f (patch)
tree9b07c3b53abfec221edabdbde9d88a6c8536300d /mod/import.php
parent8a1c8c4a03899c844885da58f9184fc10e7d6b07 (diff)
downloadvolse-hubzilla-24d088d43be7cc03a0975360d7542b578c48369f.tar.gz
volse-hubzilla-24d088d43be7cc03a0975360d7542b578c48369f.tar.bz2
volse-hubzilla-24d088d43be7cc03a0975360d7542b578c48369f.zip
mysql 5.1 chokes on 'select * from group' since group is a keyword
Diffstat (limited to 'mod/import.php')
-rw-r--r--mod/import.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/import.php b/mod/import.php
index 4602c8aa8..9443f5c60 100644
--- a/mod/import.php
+++ b/mod/import.php
@@ -279,7 +279,7 @@ function import_post(&$a) {
. implode("', '", array_values($group))
. "')" );
}
- $r = q("select * from group where uid = %d",
+ $r = q("select * from `group` where uid = %d",
intval($channel['channel_id'])
);
if($r) {
@@ -341,4 +341,4 @@ function import_content(&$a) {
return $o;
-} \ No newline at end of file
+}