We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa440b9 commit 5f79069Copy full SHA for 5f79069
CHANGELOG.md
@@ -2,6 +2,8 @@
2
3
## [Unreleased]
4
5
+* Fix return value of Formatter.toString() when type is text
6
+
7
## [3.4.14] - 2016-11-30
8
9
* Improved parsing of UNION queries.
src/Utils/Formatter.php
@@ -487,6 +487,7 @@ public function toString($token)
487
} elseif ($this->options['type'] === 'html') {
488
return htmlspecialchars($text, ENT_NOQUOTES);
489
}
490
+ return $text;
491
492
493
/**
0 commit comments