Skip to content

Commit cca361f

Browse files
authored
Merge pull request #735 from pupi1985/patch-126
Treat blob ids as strings due to size limitations
2 parents bd18efc + a879ccf commit cca361f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

qa-include/db/cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function qa_db_cache_set($type, $cacheid, $content)
4444
);
4545

4646
qa_db_query_sub(
47-
'INSERT INTO ^cache (type, cacheid, content, created, lastread) VALUES ($, #, $, NOW(), NOW()) ' .
47+
'INSERT INTO ^cache (type, cacheid, content, created, lastread) VALUES ($, $, $, NOW(), NOW()) ' .
4848
'ON DUPLICATE KEY UPDATE content = VALUES(content), created = VALUES(created), lastread = VALUES(lastread)',
4949
$type, $cacheid, $content
5050
);

0 commit comments

Comments
 (0)