
11-29-2004, 02:16 PM
|
|
|
Join Date: May 2004
Location: Athens, Greece
Posts: 2,091
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by ptenthus
Doh, never mind...found the problem. the " should be not removed, but moved to the end of the line just before the ; (second install[] line)...
Now it runs just fine.
Was:
PHP Code:
$install[]="alter table ".TABLE_PREFIX."warnings
add `warned_status` char(1), add `removed_by` int(15), add `removed_date` int(15)";
$install[]="alter table ".TABLE_PREFIX."user add `warning_bans` int(2), add `warnings` int(5);
$install[]="alter table ".TABLE_PREFIX."warning_types add `warn_maturity` int(5), add `warn_permban` char(3), add `warn_type` char(3)";
Second line should be:
PHP Code:
$install[]="alter table ".TABLE_PREFIX."user add `warning_bans` int(2), add `warnings` int(5)";
|
Glad you have it working.
Rgds
|