Another problem is that the table structure of i18n has changed.
If you moving from Cake_1.2-alpha to Cake_1.2-pre-beta without
updating that table will result in blank pages.
With regard to the sprintf function, I had the same problem on one of
my hosting, and I had to replace all delete messages as follows:
i.e.
replace
--------
sprintf(__('Are you sure you want to delete # %s?', true),
$post['Post']['id'])
--------
with
--------
'Are you sure you want to delete'.' #' . $post['Post']['id']
--------
After performing the above substitutions, eerything worked fine.
Hope this helps: I stood one day debugging this stuff in front of a
blank screen ;o(
Dan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---