From f3227e9183887a4ba9f71d2407e7f0e14406de8a Mon Sep 17 00:00:00 2001 From: Claus Due <claus@namelesscoder.net> Date: Sun, 2 Jul 2017 01:53:30 +0200 Subject: [PATCH] [BUGFIX] Import Fluid namespace in Step layout of install tool MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Namespace “i†is used but never imported. This patch fixes that. Change-Id: Iba5a5e97cb633298b9993fca5c5b5f655f36feaf Resolves: #81765 Releases: master, 8.7 Reviewed-on: https://review.typo3.org/53375 Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Joerg Boesche <typo3@joergboesche.de> Tested-by: Joerg Boesche <typo3@joergboesche.de> Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by: Georg Ringer <georg.ringer@gmail.com> Tested-by: Georg Ringer <georg.ringer@gmail.com> --- typo3/sysext/install/Resources/Private/Layouts/Step.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/install/Resources/Private/Layouts/Step.html b/typo3/sysext/install/Resources/Private/Layouts/Step.html index 18c6fe322012..44759a4bac83 100644 --- a/typo3/sysext/install/Resources/Private/Layouts/Step.html +++ b/typo3/sysext/install/Resources/Private/Layouts/Step.html @@ -1,5 +1,5 @@ <!DOCTYPE html> -<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"> +<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers" xmlns:i="http://typo3.org/ns/TYPO3/CMS/Install/ViewHelpers"> <head> <title>Installing TYPO3 CMS</title> <f:render partial="Action/Common/Headers" arguments="{_all}" /> -- GitLab