Hi MichalDCK,
If the subscript meet a PHP critical error (when run in subtemplate mode), then a blank page is displayed. This is because in this subtemplate mode TBS is catching all output information in order to insert it inside the merged template. Therefore, when the error occurs, the whole script is ended and the PHP error message is lost in buffer which no longer exist.
I suggest that you debug you subscript template by running it in normal mode. The code
if (isset($this)) {
$TBS =& $this;
} else {
include_once('tbs_class.php') ;
$TBS = new clsTinyButStrong;
}
|
is made for this purpose. It makes the subscript runable in standalone.