From 4ece806b3f3d9cfa1c571b4bd41b5946289588b4 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 25 Jan 2007 19:32:54 +0000 Subject: [PATCH] Apparently we're overflowing the news_items.title field, since heslin.org is a chatty bitch. :) --- outofdate/IcculusNews1.php | 2 +- outofdate/convert.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/outofdate/IcculusNews1.php b/outofdate/IcculusNews1.php index 94814bc..a0d0caf 100644 --- a/outofdate/IcculusNews1.php +++ b/outofdate/IcculusNews1.php @@ -31,7 +31,7 @@ ip int not null, approved tinyint default 0, deleted tinyint default 0, - title varchar(64) not null, + title varchar(128) not null, text text not null, author mediumint default 0, postdate datetime not null, diff --git a/outofdate/convert.pl b/outofdate/convert.pl index 9ae3695..4cdf644 100644 --- a/outofdate/convert.pl +++ b/outofdate/convert.pl @@ -148,7 +148,7 @@ " ip int unsigned not null," . " deleted tinyint unsigned default 0," . " approved tinyint unsigned default 0," . - " title varchar(64) not null," . + " title varchar(128) not null," . " text text not null," . " author mediumint unsigned default 0," . " postdate datetime not null," .