aboutsummaryrefslogtreecommitdiffstats
path: root/Source/TableSource.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2009-10-27 23:57:26 +0000
committerstuconnolly <stuart02@gmail.com>2009-10-27 23:57:26 +0000
commite22762ee183cdf079fd8b18131325b145e8fb707 (patch)
tree5f010c2df50a8772b42571d10d24f1d48a7efc59 /Source/TableSource.m
parent787dbdc988bb62c63f9fd01d42d4f5c0fa00bdfd (diff)
downloadsequelpro-e22762ee183cdf079fd8b18131325b145e8fb707.tar.gz
sequelpro-e22762ee183cdf079fd8b18131325b145e8fb707.tar.bz2
sequelpro-e22762ee183cdf079fd8b18131325b145e8fb707.zip
Missing space when appending extra field info when creating a new field. Fixes original problem reported in issue #445.
Diffstat (limited to 'Source/TableSource.m')
-rw-r--r--Source/TableSource.m1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/TableSource.m b/Source/TableSource.m
index 73e9c9b3..f12a5f86 100644
--- a/Source/TableSource.m
+++ b/Source/TableSource.m
@@ -754,6 +754,7 @@ fetches the result as an array with a dictionary for each row in it
) &&
[theRow objectForKey:@"Extra"] )
{
+ [queryString appendString:@" "];
[queryString appendString:[theRow objectForKey:@"Extra"]];
}