#3609 - A paragraph of text issue
0 guests and 0 members have recently viewed this.
The top 3 point earners from 7th Dec 2025 to 14th Dec 2025.
| PDStig |
|
|
|---|---|---|
| Gabri |
|
|
| Master Rat |
|
|
There are no events at this time
A screenshot of inputting the text initially
A screenshot of the text as displayed
A screenshot of how the field looks on the edit form
I think this broke recently, due to another bug fix to an issue on MySQL.
I'm in a bit of chaos right now as I just got back from 3 weeks on site with clients. So here's the raw patch...
diff --git a/sources/database/shared/mysql.php b/sources/database/shared/mysql.php
index b428440f5..a17c1fcf8 100755
--- a/sources/database/shared/mysql.php
+++ b/sources/database/shared/mysql.php
@@ -398,7 +398,7 @@ class Database_super_mysql
{
switch ($type) {
case 'CHAR':
- $_type = $type . '(255)';
+ $_type = $type . '(65535)';
break;
case 'INT':