another postgresql bug: serendipity_event_categorytemplates.

Found a bug? Tell us!!
Post Reply
dmg

another postgresql bug: serendipity_event_categorytemplates.

Post 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
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: another postgresql bug: serendipity_event_categorytempla

Post by garvinhicking »

Thanks once again! Fixed! :)

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

Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Post Reply