Reported to me via email by :-

autologout.install - PostgreSQL section - create table need to end with
right parenthesis

      case 'pgsql':
        $query1 = db_query("CREATE TABLE {autologout} (".
                           "uid INT NOT NULL,".
                           "setting SMALLINT NOT NULL
default 0,".
                           "PRIMARY KEY (uid))");

havran

Patch too small to attach, see "inline" below. Ready for commit.

Index: autologout.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/autologout/autologout.install,v
retrieving revision 1.1
diff -u -p -r1.1 autologout.install
--- autologout.install 19 May 2006 08:36:13 -0000 1.1
+++ autologout.install 26 May 2006 12:04:40 -0000
@@ -26,7 +26,7 @@ if (!function_exists('autologout_install
$query1 = db_query("CREATE TABLE {autologout} (".
"uid INT NOT NULL,".
"setting SMALLINT NOT NULL default 0,".
- "PRIMARY KEY (uid)");
+ "PRIMARY KEY (uid))");
if($query1) {
$created = TRUE;
}

Comments

AjK’s picture

Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)