Actions
Bug #32212
closedselect.pidInList = 0 won't select records with pid = 0
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
TypoScript
Target version:
-
Start date:
2011-11-30
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.6
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Following Typoscript:
10 = CONTENT 10 { table = static_countries select { pidInList = 0 orderBy = cn_short_en } renderObj { field = cn_short_en } }
It won't get any records because of this code (pidInList will be unset):
if (!$conf[$property]) { unset($conf[$property]); }
Maybe we can change it to:
if (!$conf[$property] && $conf[$property] != 0) { unset($conf[$property]); }
Don't know if this is the right solution or has any side effects though.
Files
Updated by Soeren Kracker almost 13 years ago
- File 32212.diff 32212.diff added
Attached my described change in typo3_src/typo3/sysext/cms/tslib/class.tslib_content.php
I'm new to bug reports. Hope the diff file is set up correctly.
Updated by Soeren Kracker almost 13 years ago
- File 32212.diff 32212.diff added
hm, of course !== 0 ;)
edit: a bit too hasty. The problem lies in function stdWrap.
Maybe we could save the initial value of $conf[$property] and compare later on (before unset) if it has been 0.
Updated by Ernesto Baschny almost 13 years ago
- Status changed from New to Resolved
Resolved with the same fix already merged in #32374.
Actions