Active
Project:
Boost
Version:
6.x-1.17
Component:
Documentation
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
25 Dec 2009 at 00:11 UTC
Updated:
24 Jan 2010 at 03:11 UTC
I've noticed that Boost doesn't cache the forms for adding (creating) nodes for the default language. Why not? Could it?
I've also noticed that it does cache the node forms for the secondary language on my website.
Why would it cache forms in one language but not another?
Comments
Comment #1
mikeytown2 commentedI have it set to not cache the node/add path
<?php
function boost_is_cacheable($path) {
...
|| preg_match('!^node/add!', $normal_path)
...
}
Sounds like you want to be able to cache this correct? Also sounds like Boost needs to support i18n url prefixes in this function...
Comment #2
OneTwoTait commentedActually, I don't need to cache those pages myself. It's fine for my purposes. I just thought this behaviour seemed inconsistent so it might be of interest to a Boost maintainer.
Comment #3
mikeytown2 commented