diff --git a/typo3/sysext/about/Classes/ViewHelpers/SkinImageViewHelper.php b/typo3/sysext/about/Classes/ViewHelpers/SkinImageViewHelper.php
deleted file mode 100644
index c4bd6b02625496ad8750df2f7a4caa3f899be428..0000000000000000000000000000000000000000
--- a/typo3/sysext/about/Classes/ViewHelpers/SkinImageViewHelper.php
+++ /dev/null
@@ -1,47 +0,0 @@
-<?php
-namespace TYPO3\CMS\About\ViewHelpers;
-
-/*
- * This file is part of the TYPO3 CMS project.
- *
- * It is free software; you can redistribute it and/or modify it under
- * the terms of the GNU General Public License, either version 2
- * of the License, or any later version.
- *
- * For the full copyright and license information, please read the
- * LICENSE.txt file that was distributed with this source code.
- *
- * The TYPO3 project - inspiring people to share!
- */
-
-/**
- * Render images that can be registered in the TYPO3 backend skinning API
- * Extends the default image view helper from fluid
- *
- * This view helper is a helper for ext:about only and should
- * not be used outside of the extension for now.
- * See the fluid templates of ext:about for a usage example.
- *
- * @internal
- */
-class SkinImageViewHelper extends \TYPO3\CMS\Fluid\ViewHelpers\ImageViewHelper {
-
-	/**
-	 * Resizes a given image (if required) and renders the respective img tag
-	 *
-	 * @see http://typo3.org/documentation/document-library/references/doc_core_tsref/4.2.0/view/1/5/#id4164427
-	 * @param string $src
-	 * @param string $width width of the image. This can be a numeric value representing the fixed width of the image in pixels. But you can also perform simple calculations by adding "m" or "c" to the value. See imgResource.width for possible options.
-	 * @param string $height height of the image. This can be a numeric value representing the fixed height of the image in pixels. But you can also perform simple calculations by adding "m" or "c" to the value. See imgResource.width for possible options.
-	 * @param int $minWidth minimum width of the image
-	 * @param int $minHeight minimum height of the image
-	 * @param int $maxWidth maximum width of the image
-	 * @param int $maxHeight maximum height of the image
-	 * @return string rendered tag.
-	 */
-	public function render($src, $width = NULL, $height = NULL, $minWidth = NULL, $minHeight = NULL, $maxWidth = NULL, $maxHeight = NULL) {
-		$src = \TYPO3\CMS\Backend\Utility\IconUtility::skinImg('../typo3/', $src, '', 1);
-		return parent::render('' . $src, $width, $height . $minWidth, $minHeight, $maxWidth, $maxHeight);
-	}
-
-}
diff --git a/typo3/sysext/about/Resources/Private/Partials/Logo.html b/typo3/sysext/about/Resources/Private/Partials/Logo.html
index 7dd671ef5e2c36fa09bbd62b80f80f5e89ec72bc..f73f051d072a3bf64199ccaf2a44f13fe55bd8f7 100644
--- a/typo3/sysext/about/Resources/Private/Partials/Logo.html
+++ b/typo3/sysext/about/Resources/Private/Partials/Logo.html
@@ -1,8 +1,3 @@
-{namespace about=TYPO3\CMS\About\ViewHelpers}
-
-<about:SkinImage
-	src="sysext/backend/Resources/Public/Images/typo3-transparent@2x.png"
-	width="150"
-	alt="{f:translate(key:'LLL:EXT:lang/locallang_mod_help_about.xlf:typo3_logo')}"
-/>
-<br><br>
+<img src="sysext/backend/Resources/Public/Images/typo3-transparent@2x.png" width="150"
+	alt="{f:translate(key:'LLL:EXT:lang/locallang_mod_help_about.xlf:typo3_logo')}" />
+<br><br>
\ No newline at end of file