Closed (fixed)
Project:
Internationalization
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
9 Feb 2010 at 16:27 UTC
Updated:
15 Jun 2010 at 12:50 UTC
Hello,
First of all, thanks for this great piece of code.
Please find attached a patch fixing a quote issue.
In table i18n_blocks, delta is a varchar, therefore it should be quoted.
Instead of:
SELECT ibid FROM i18n_blocks WHERE delta = 8
One should write:
SELECT ibid FROM i18n_blocks WHERE delta = '8'
Under PostgreSQL, this makes an error.
The attached patch fixes this issue.
Please apply.
Kind regards,
Jean-Michel
| Comment | File | Size | Author |
|---|---|---|---|
| i18nblocks.diff | 580 bytes | grub3 |
Comments
Comment #1
jose reyero commentedCommitted, thanks.