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 | |
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
-rw-r--r-- | modules/system/system.install | 2 | ||||
-rw-r--r-- | update.php | 2 |
2 files changed, 2 insertions, 2 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)"); diff --git a/update.php b/update.php index 8c3362119..3387ad849 100644 --- a/update.php +++ b/update.php @@ -698,7 +698,7 @@ function update_create_batch_table() { sid varchar(64) NOT NULL default '', timestamp int NOT NULL default '0', batch text, - PRIMARY KEY (bid), + PRIMARY KEY (bid) )"); $ret[] = update_sql("CREATE INDEX {batch}_sid_idx ON {batch} (sid)"); break; |