another postgresql bug: serendipity_event_categorytemplates.
Posted: Sat Aug 27, 2005 1:30 am
As with the previous one I reported, postgresql does not like empty strings instead of spaces:
daniel
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'],