[TYPO3-core] Announcing TYPO3 4.5.18, 4.6.11 and 4.7.3

Stefan Frömken firma at sfroemken.de
Wed Aug 8 18:54:08 CEST 2012


The field "uid" is not the "uid" out of the select-part anymore. My TS 
returns following records:

224	Tceforms	// not linked
225	Ctrl		// not linked
69	fluid		// not linked
14	Warum jQuery?	// linked
2	Home		// linked
255	Form		// not linked
252	Buttons		// not linked

But the Link "Home" shows to Record "index.php?id=40" instead of "2"
and the link "Warum jQuery?" shows to record index.php?id=8" instead of "14"

Here is my TypoScript:

10 = CONTENT
10 {
	table = tt_content
	select {
		orderBy = MAX(tt_content.tstamp) DESC
		groupBy = tt_content.pid
		pidInList = 1
		recursive = 10
		max = 7
		where = nav_hide = 0
		selectFields = pages.uid, pages.title
		leftjoin = pages ON (tt_content.pid = pages.uid)
	}

	renderObj = TEXT
	renderObj {
	  field = title
	  required = 1
	  typolink.parameter.field = uid // maybe here is the problem
	  typolink.ATagParams = class=internal-link
	  wrap = <li>|</li>
	}
	wrap = <h2>Meine zuletzt bearbeiteten Inhalte</h2><ul>|</ul>
}

And here is the resulting Query:

SELECT pages.uid, pages.title
FROM tt_content
LEFT JOIN pages ON ( tt_content.pid = pages.uid )
WHERE nav_hide =0
GROUP BY tt_content.pid
ORDER BY MAX( tt_content.tstamp ) DESC
LIMIT 7

Am 08.08.2012 18:26, schrieb Stefan Frömken:
> [english]
> After updating from 4.6.10 -> 4.6.11 some links out of my TemplaVoila
> FCEs are not linked anymore. The working links direct to a wrong
> location. I have changed TYPO3-Source three time, so the problem is in
> the new core. Any ideas?
>
> Stefan
>
> [german]
> Nach dem Update von 4.6.10 -> 4.6.11 werden Links aus einem TV-FCE
> heraus nicht mehr verlinkt und die paar Links, die noch da sind, werden
> auch noch falsch verlinkt. Hab jetzt 3mal zwischen den Versionen hin und
> her gewechselt. Liegt definitiv am Core. Was wurde dahingehend verändert?
>
> Stefan
>
> Am 08.08.2012 16:17, schrieb Helmut Hummel:
>> Dear TYPO3 World,
>>
>> the TYPO3 Community has just released TYPO3 versions 4.5.18, 4.6.11 and
>> 4.7.3 which are now ready for you to download. All versions are
>> maintenance releases and contain bug fixes only.
>>
>> The packages can be downloaded here:
>>    http://typo3.org/download/
>>
>> For details about the release, please see:
>>    http://typo3.org/news/article/typo3-4518-4611-and-473-released/
>>
>>
>



More information about the TYPO3-team-core mailing list