From artur2000 at gmx.de Mon May 5 16:49:05 2014 From: artur2000 at gmx.de (Artur Cichosz) Date: Mon, 05 May 2014 16:49:05 +0200 Subject: [TYPO3-content-rendering] =?utf-8?q?_TYPO3_core_-_links_to_anchor?= =?utf-8?q?s_get_prepended_with_GET_parameters?= Message-ID: Hi, I have a problem with TYPO3 6.1.8. Each link pointing to an anchor inside the HTML code e.g. `go to anchor` gets prepended with the relative path to the TYPO3 root on the server. Let's say my page is http://somehost.org/my_page/ then the link above gets replaced to `go to anchor`. If my page is directly under ducument root, there is no problem with that. My links stay untouched. But in case I add some GET parameters to the URL, they get prepended as well. Let's say I call my page like that: `http://somehost.org/?test=abc`. Now my link looks like this: `go to anchor` How can I avoid this replacements? I want some links to stay perfectly untouched. From artur2000 at gmx.de Mon May 5 17:02:00 2014 From: artur2000 at gmx.de (Artur Cichosz) Date: Mon, 05 May 2014 17:02:00 +0200 Subject: [TYPO3-content-rendering] =?utf-8?q?_Re=3A_TYPO3_core_-_links_to_?= =?utf-8?q?anchors_get_prepended_with_GET_parameters?= References: Message-ID: I should have research it better. I just found it myself. config.prefixLocalAnchors is responsible for that. From chrisv10 at gmail.com Tue May 13 15:15:15 2014 From: chrisv10 at gmail.com (Christer) Date: Tue, 13 May 2014 15:15:15 +0200 Subject: [TYPO3-content-rendering] =?utf-8?b?IFtUWVBPMyA2LjIuMy1kZXZdIExP?= =?utf-8?q?AD=5FREGISTER_in_CssStyledContentController_problem=3F?= Message-ID: I have a problem that Textpic elements that don't have a image. CssStyledContentController a calls LOAD_REGISTER: #475 : $this->cObj->LOAD_REGISTER($conf['preRenderRegisters.'], 'LOAD_REGISTER'); And then returns #493: return $content; without calling; $this->cObj->LOAD_REGISTER($conf['preRenderRegisters.'], 'RESTORE_REGISTER'); This means that the REGISTER scope gets out of sync. Am I doing something wrong or is it just another 6.2 bug? *PS: Yes changing the element to text instead of textpic "fixes" the problem but using textpic without a image shouldn't have a REGISTER side effect.