Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed issue with cached pages and message block
After debugging an issue with session messages, I've found out that the sort order in dynamic blocks is very important and which had a great impact to my problem and solved my issue. I guess the problem is that only "global_messages" block is used in the templates. But in the FPC_Observer preparedLayout function all session messages are set to the "messages" block, because its the on the first position in the dynamic_block list. But the "messages" block is used nowhere. So I just switched the positions between "messages" and "global_messages" and everything works fine for me now.
- Loading branch information