From: Richard S. <ri...@ri...> - 2003-08-27 00:22:00
|
I don't see the purpose on checking if a column exists by creating an=20 index on it but I found the problem I was having a second ago with it. In Database.php in the core of course, change line number 769 thats=20 reads.... $sql =3D "ALTER TABLE $table_name ADD INDEX (" . implode(", ", $columns)=20= . ")";=00=00 to.... $sql =3D "CREATE INDEX ".$table_name."_index ON $table_name (" .=20 implode(", ", $columns) . ")"; I'll be sending more fixes I find throughout the system :-) - Richard S.= |