From 2f14e1f4c3a1fd190c6c2a1d473c0c76b773c142 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=91cze=20Bence?= Date: Sat, 27 Jun 2020 13:20:11 +0200 Subject: [PATCH] MAPG-180 don't parse REVISION in view linking time --- src/View/Linker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/View/Linker.php b/src/View/Linker.php index 817d8ac..b92fed3 100644 --- a/src/View/Linker.php +++ b/src/View/Linker.php @@ -144,7 +144,7 @@ class Linker $output['code'] = file_get_contents(ROOT . '/public/static/' . $asset); } else { if (!preg_match('/^http(s)?/', $asset)) { - $output['file'] = $_ENV['STATIC_ROOT'] . '/' . $asset . '?rev=' . REVISION; + $output['file'] = $_ENV['STATIC_ROOT'] . '/' . $asset . '?rev='; } else { $output['file'] = $asset; }