---
title: "Feature: #68756 - Add config \"base\" to stdWrap"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:feature-68756"
source: "Changelog/7.5/Feature-68756-AddConfigBaseToStdWrap.rst"
modified: "2026-09-14T09:47:36+00:00"
---

# Feature: #68756 - Add config "base" to stdWrap

See [forge#68756](https://forge.typo3.org/issues/68756)

## Description

The following function was updated and added with a new optional parameter $base:
`TYPO3CMSCoreUtilityGeneralUtility::formatSize($sizeInBytes, $labels = '', $base = 0)`

This affects the function:
`TYPO3CMSFrontendContentObjectContentObjectRenderer->stdWrap_bytes`

Until now it was not possible to set the base parameter via TypoScript if you add custom labels.

## Impact

The ability to set the base (1000 or 1024) via TypoScript configuration has been added.

With the `base` property it can be defined whether to use a base of 1000 or 1024 to calculate with

-   **Thus::**

    bytes.labels = " | K| M| G"
    bytes.base = 1000
