From 619cfb2df29300f051387edc3c95e1be124a4e27 Mon Sep 17 00:00:00 2001 From: till <till@php.net> Date: Mon, 25 Feb 2008 05:17:35 -0500 Subject: [PATCH] * introduced isset() because that is how you test if a var is set (which is why a NOTICE is a good idea to look at sometimes) * fixed a bug - $smtp_conn was checked, but it's actually called $SMTP_CONN, now the connection is really being re-used --- SQL/sqlite.initial.sql | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/SQL/sqlite.initial.sql b/SQL/sqlite.initial.sql index fd2a22f..4ae7529 100644 --- a/SQL/sqlite.initial.sql +++ b/SQL/sqlite.initial.sql @@ -93,7 +93,7 @@ sess_id varchar(40) NOT NULL PRIMARY KEY, created datetime NOT NULL default '0000-00-00 00:00:00', changed datetime NOT NULL default '0000-00-00 00:00:00', - ip varchar(15) NOT NULL default '', + ip varchar(40) NOT NULL default '', vars text NOT NULL ); -- Gitblit v1.9.1