stripHtml filter doesn't work

netteman
Member | 122
+
0
-

I just downloaded the https://github.com/…reloaded.zip web project
and the stripHtml https://latte.nette.org/en/filters#… latte filter doesn't work on localhost or my hosting

I'm not sure if it's a bug but I think you can answer that :)

/vendor/tracy/tracy/src/Bridges/Nette/Bridge.php(73): is_file(NULL)
<?php

declare(strict_types=1);

namespace App\Presenters;

use Nette;


final class HomepagePresenter extends Nette\Application\UI\Presenter
{
	public function renderDefault(){
		$this->template->html = '<a href="https://nette.org">Nette</a>';
	}
}
default.latte
{$html|stripHtml}
David Grudl
Nette Core | 8099
+
0
-

It is fixed in v2.10.1

netteman
Member | 122
+
0
-

So the zipped preloaded project isn't always up to date?