Page 1 of 1

another postgresql bug: serendipity_event_categorytemplates.

Posted: Sat Aug 27, 2005 1:30 am
by dmg
As with the previous one I reported, postgresql does not like empty strings instead of spaces:

Code: Select all

263c263
<                         'fetchlimit'    => $serendipity['POST']['cat']['fetchlimit'],
---
>                         'fetchlimit'    => (int)$serendipity['POST']['cat']['fetchlimit'],
265c265
<                         'categoryid'    => $eventData,
---
>                         'categoryid'    => (int)$eventData,
267c267
<                         'futureentries' => $serendipity['POST']['cat']['futureentries'],
---
>                         'futureentries' => (int)$serendipity['POST']['cat']['futureentries'],
daniel

Re: another postgresql bug: serendipity_event_categorytempla

Posted: Mon Aug 29, 2005 2:18 pm
by garvinhicking
Thanks once again! Fixed! :)

Hope I'll be able to remember this about pgsql. :)

Regards,
Garvin