diff --git a/typo3/sysext/cms/tslib/class.tslib_content.php b/typo3/sysext/cms/tslib/class.tslib_content.php index 9c333d2e3305f45eb3383606c401f3c58d6f4b6c..af076350deb6bd096d1d3c7324079cf899942f64 100644 --- a/typo3/sysext/cms/tslib/class.tslib_content.php +++ b/typo3/sysext/cms/tslib/class.tslib_content.php @@ -125,6 +125,8 @@ class tslib_cObj { 'round' => 'boolean', 'round.' => 'array', 'numberFormat.' => 'array', + 'expandList' => 'boolean', + 'expandList.' => 'array', 'date' => 'dateconf', 'date.' => 'array', 'strftime' => 'strftimeconf', @@ -2397,6 +2399,19 @@ class tslib_cObj { return $content; } + /** + * expandList + * Will return a formatted number based on configuration given as stdWrap properties + * + * @param string Input value undergoing processing in this function. + * @param array stdWrap properties for expandList. + * @return string The processed input value + */ + public function stdWrap_expandList($content = '', $conf = array()) { + $content = t3lib_div::expandList($content); + return $content; + } + /** * date * Will return a formatted date based on configuration given according to PHP date/gmdate properties