| Project: | ProjectPier |
| Version: | 0.8.6-stable |
| Component: | Miscellaneous |
| Category: | bug report |
| Priority: | normal |
| Assigned: | phpfreak |
| Status: | closed - won't fix/other |
Jump to:
Description
Therre is a bug in script :
public/upgrade/templates/db_migration/0803-086.php
there si a missing dot-comma (;) on line 41
ALTER TABLE `##?php echo $table_prefix ?####users` DROP INDEX `email` , ADD INDEX `email` ( `email` ) ===> ; >=====
Thanks
Confirmed.
Please replace line 41 with this one:
ALTER TABLE `<?php echo $table_prefix ?>users` DROP INDEX `email` , ADD INDEX `email` ( `email` );http://www.projectpier.org/node/2050