| 10:06 |
TheS1 |
how kann i stop typo3 from adding a target="_blank" to external links? target ist not xhtml 1.1 validat |
| 10:16 |
ndee |
http://pastie.org/457883 <-- the lib.loginarea is mapped as a div but somehow, the two menu points don't show up in the frontend. It should be like this: <div id="topbar"><ul id="leftbarmenu"><li>menu1</li></ul></div> but it just shows <div id="topbar"><ul id="leftbarmenu"></ul></div> |
| 11:59 |
ndee |
how can I check with typoscript, if a user is logged in? |
| 12:19 |
rw-HeDdi |
ndee : may be this one [loginUser = *] .. cmiiw .. :) |
| 12:20 |
ndee |
I found the solution :) http://www.typo3wizard.com/en/snippets/cool-stuff-typoscript/typoscript-loginbox-using-kb-md5feuser-and-newloginbox.html thanks anyway :) |
| 12:20 |
rw-HeDdi |
ok .. :) |
| 19:31 |
sorenmalling |
Hi, is there a built in function that takes a comma seperated list and is able to output it as a array? |
| 19:34 |
void |
sorenmalling: yes, explode() |
| 19:36 |
sorenmalling |
void: I guess you mean the PHP function? I just found this TYPO3 built in function insted: trimExplode |
| 19:37 |
sorenmalling |
http://typo3.org/fileadmin/typo3api-4.0.0/d3/d3d/classt3lib__div.html#5edd3b06380d43e600723e7e4de89cde |
| 19:37 |
sorenmalling |
I just had to search for the right word :) |
| 19:37 |
void |
sorenmalling: typo3 even have t3lib_div::intExplode |
| 19:38 |
void |
but both that functions use explode() internally |
| 19:38 |
sorenmalling |
Cool! |