CoreCommunity ExtensionsIncubatorDistributionsTYPO3 4.5 ProjectsTYPO3 4.6 ProjectsTYPO3 4.7 ProjectsTYPO3 6.0 ProjectsTYPO3 6.1 ProjectsTYPO3 6.2 Projects (+)

remove_filter_variable.patch

Adrien Crivelli, 2010-11-12 14:07

Download (537 Bytes)

 
class.tx_phpdisplay.php (working copy)
185 185
		if (is_file($templateFile)) {
186 186
			$template = t3lib_div::makeInstance('tx_phpdisplay_template');
187 187
			$template->set('controller', $this->getController());
188
			$template->set('filter', $this->getFilter());
189 188
			$template->set('datastructure', $this->getDataStructure());
190 189
			$this->result = $template->fetch($templateFile);
191 190
		}