Skip to content

Commit

Permalink
Apparently we're overflowing the news_items.title field, since heslin…
Browse files Browse the repository at this point in the history
….org is a chatty bitch. :)
  • Loading branch information
icculus committed Jan 25, 2007
1 parent 34bd29b commit 4ece806
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion outofdate/IcculusNews1.php
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion outofdate/convert.pl
Expand Up @@ -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," .
Expand Down

0 comments on commit 4ece806

Please sign in to comment.