From 406f0f8b0098970dd80026b9bf38de47d8b84e1a Mon Sep 17 00:00:00 2001
From: Wouter Wolters <typo3@wouterwolters.nl>
Date: Thu, 27 Nov 2014 22:39:11 +0100
Subject: [PATCH] [TASK] Add missing closing quote in phpDoc

Resolves: #63369
Releases: master,6.2
Change-Id: I325193f7739757c81eb8ad4cf6fbbbe8a0ad1425
Reviewed-on: http://review.typo3.org/34715
Reviewed-by: Mathias Schreiber <mathias.schreiber@wmdb.de>
Tested-by: Mathias Schreiber <mathias.schreiber@wmdb.de>
Reviewed-by: Cedric Ziel <cedric@cedric-ziel.com>
Tested-by: Cedric Ziel <cedric@cedric-ziel.com>
Reviewed-by: Helmut Hummel <helmut.hummel@typo3.org>
Tested-by: Helmut Hummel <helmut.hummel@typo3.org>
---
 typo3/sysext/core/Classes/Utility/GeneralUtility.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 mode change 100644 => 100755 typo3/sysext/core/Classes/Utility/GeneralUtility.php

diff --git a/typo3/sysext/core/Classes/Utility/GeneralUtility.php b/typo3/sysext/core/Classes/Utility/GeneralUtility.php
old mode 100644
new mode 100755
index 90b97c99a119..3f4bfefef3c4
--- a/typo3/sysext/core/Classes/Utility/GeneralUtility.php
+++ b/typo3/sysext/core/Classes/Utility/GeneralUtility.php
@@ -2061,7 +2061,7 @@ class GeneralUtility {
 	 * However using MSIE to read the XML output didn't always go well: One reason could be that the character encoding is not observed in the PHP data. The other reason may be if the tag-names are invalid in the eyes of MSIE. Also using the namespace feature will make MSIE break parsing. There might be more reasons...
 	 *
 	 * @param array $array The input PHP array with any kind of data; text, binary, integers. Not objects though.
-	 * @param string $NSprefix tag-prefix, eg. a namespace prefix like "T3:
+	 * @param string $NSprefix tag-prefix, eg. a namespace prefix like "T3:"
 	 * @param int $level Current recursion level. Don't change, stay at zero!
 	 * @param string $docTag Alternative document tag. Default is "phparray".
 	 * @param int $spaceInd If greater than zero, then the number of spaces corresponding to this number is used for indenting, if less than zero - no indentation, if zero - a single TAB is used
@@ -2178,7 +2178,7 @@ class GeneralUtility {
 	 * This is a wrapper for xml2arrayProcess that adds a two-level cache
 	 *
 	 * @param string $string XML content to convert into an array
-	 * @param string $NSprefix The tag-prefix resolve, eg. a namespace like "T3:
+	 * @param string $NSprefix The tag-prefix resolve, eg. a namespace like "T3:"
 	 * @param bool $reportDocTag If set, the document tag will be set in the key "_DOCUMENT_TAG" of the output array
 	 * @return mixed If the parsing had errors, a string with the error message is returned. Otherwise an array with the content.
 	 * @see array2xml(),xml2arrayProcess()
@@ -2207,7 +2207,7 @@ class GeneralUtility {
 	 * This is the reverse function of array2xml()
 	 *
 	 * @param string $string XML content to convert into an array
-	 * @param string $NSprefix The tag-prefix resolve, eg. a namespace like "T3:
+	 * @param string $NSprefix The tag-prefix resolve, eg. a namespace like "T3:"
 	 * @param bool $reportDocTag If set, the document tag will be set in the key "_DOCUMENT_TAG" of the output array
 	 * @return mixed If the parsing had errors, a string with the error message is returned. Otherwise an array with the content.
 	 * @see array2xml()
-- 
GitLab