diff options
author | stuconnolly <stuart02@gmail.com> | 2009-10-27 23:57:26 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-10-27 23:57:26 +0000 |
commit | e22762ee183cdf079fd8b18131325b145e8fb707 (patch) | |
tree | 5f010c2df50a8772b42571d10d24f1d48a7efc59 /Source | |
parent | 787dbdc988bb62c63f9fd01d42d4f5c0fa00bdfd (diff) | |
download | sequelpro-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')
-rw-r--r-- | Source/TableSource.m | 1 |
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"]]; } |