mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 18:35:57 +00:00
logger/sql: limit maximum context length on mysql because mysql
This commit is contained in:
@@ -12,6 +12,9 @@ class Logger_SQL {
|
|||||||
|
|
||||||
$owner_uid = $_SESSION["uid"] ? $_SESSION["uid"] : null;
|
$owner_uid = $_SESSION["uid"] ? $_SESSION["uid"] : null;
|
||||||
|
|
||||||
|
if (DB_TYPE == "mysql")
|
||||||
|
$context = substr($context, 0, 65534);
|
||||||
|
|
||||||
$sth = $this->pdo->prepare("INSERT INTO ttrss_error_log
|
$sth = $this->pdo->prepare("INSERT INTO ttrss_error_log
|
||||||
(errno, errstr, filename, lineno, context, owner_uid, created_at) VALUES
|
(errno, errstr, filename, lineno, context, owner_uid, created_at) VALUES
|
||||||
(?, ?, ?, ?, ?, ?, NOW())");
|
(?, ?, ?, ?, ?, ?, NOW())");
|
||||||
|
|||||||
Reference in New Issue
Block a user