Categories > TinyButStrong general >

remove unused blocks

The forum is closed. Please use Stack Overflow for submitting new questions. Use tags: tinybutstrong , opentbs
By: ret
Date: 2003-12-01
Time: 01:19

remove unused blocks

Is it possible to remove all [blocks], if there wasnt merge for.
By: Skrol29
Date: 2003-12-01
Time: 01:36

Re: remove unused blocks

You can remove knowed blocks by merging them one by one with an empty string.
Example:
$TBS->MergeBlock('myblock','text','') ;
'text' is a TBS keyword to say that the data to merge with is a string.
By: ret
Date: 2003-12-01
Time: 02:01

Re: remove unused blocks

Thank you:)