The problem with file inclusion is that this is completely contrary to the way in which vBulletin handles it's output buffering.
It doesn't generate line after line, it generates the entire page, and then sends that to the browser once it's compiled it.
For includes to work properly, anything (echos, output, etc.) would have to be stored as variables within the include, which are then echoed by the template itself.
|