diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-05-09 11:39:23 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-05-09 11:39:23 +0000 |
commit | 85cae8161f4065c903a52bcff45f257c4244a3f2 (patch) | |
tree | 28e92fd68720ba6effd58f5f747b52a6585cbf66 /modules | |
parent | a7845659e8f383167f801975a44e8df06b26e40d (diff) | |
download | brdo-85cae8161f4065c903a52bcff45f257c4244a3f2.tar.gz brdo-85cae8161f4065c903a52bcff45f257c4244a3f2.tar.bz2 |
#127539 by bjaspan: fix comma syntax error in update.php and system.install
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index f8739d2d0..62e582d64 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -680,7 +680,7 @@ function system_install() { sid varchar(64) NOT NULL default '', timestamp int NOT NULL default '0', batch text, - PRIMARY KEY (bid), + PRIMARY KEY (bid) )"); db_query("CREATE INDEX {batch}_sid_idx ON {batch} (sid)"); |