---
title: "Breaking: #71458 - FullQuoteArray can't handle boolean values for $noQuote"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:breaking-71458"
source: "Changelog/8.0/Breaking-71458-FullQuoteArrayCantHandleBooleanValuesForNoQuote.rst"
typo3-version: "8.0"
typo3-major: 8
type: "breaking"
issue: 71458
forge: "https://forge.typo3.org/issues/71458"
tags: ["PHP-API", "Database"]
rendered: "2026-09-18T10:44:28+00:00"
---

# Breaking: #71458 - FullQuoteArray can't handle boolean values for $noQuote {#breaking-71458}

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

## Description {#description}

The API for `fullQuoteArray` allows the parameter `$noQuote` to be boolean but
converted it automatically to false as `$noQuote` is neither a string nor an
array. This behavior has been fixed, passing `true` for `$noQuote` now disables
quoting of any passed in values.

## Impact {#impact}

Passing in boolean `true` results in escaping being disabled for all values.

## Affected Installations {#affected-installations}

All installations making use of `INSERTmultipleRows()`, `INSERTquery()`,
`UPDATEquery()` or `fullQuoteArray()` and relying on the fact that quoting
remains enabled when `true` is passed as value for `$noQuote`.

## Migration {#migration}

Pass the correct list of fields to disable quoting for unless none of the
fields should be quoted.
