[TYPO3-core] RFC: Bug 4073: Extension manager doesn't find extensions if the search string contains a trailing space
Ingmar Schlecht
ingmar at typo3.org
Tue Aug 22 09:23:17 CEST 2006
+1, based on reading the patch.
cheers
Ingmar
Michael Stucki schrieb:
> This is a SVN patch request.
>
> Problem:
> See subject: Extension manager doesn't find extensions if the search string
> contains a trailing space.
>
> Solution:
> Trim the search strings.
>
> Branches:
> TYPO3_4-0 / Trunk
>
> Bugtracker reference:
> http://bugs.typo3.org/view.php?id=4073
>
> - michael
>
>
> ------------------------------------------------------------------------
>
> Index: typo3/mod/tools/em/class.em_index.php
> ===================================================================
> --- typo3/mod/tools/em/class.em_index.php (Revision 1683)
> +++ typo3/mod/tools/em/class.em_index.php (Arbeitskopie)
> @@ -356,9 +356,9 @@
>
> // Setting GPvars:
> $this->CMD = t3lib_div::_GP('CMD');
> - $this->lookUpStr = t3lib_div::_GP('_lookUp');
> + $this->lookUpStr = trim(t3lib_div::_GP('_lookUp'));
> $this->listRemote = t3lib_div::_GP('ter_connect');
> - $this->listRemote_search = t3lib_div::_GP('ter_search');
> + $this->listRemote_search = trim(t3lib_div::_GP('ter_search'));
>
>
> // Configure menu
More information about the TYPO3-team-core
mailing list