Digital Doctor Well-known member Feb 10, 2025 #1 Seems to be only this user and it's been around for a few years now. FYI. Monitor latest google chrome on windows.
Seems to be only this user and it's been around for a few years now. FYI. Monitor latest google chrome on windows.
Digital Doctor Well-known member Feb 10, 2025 #2 example URL M XF 2.2 Thread 'Increasing the 150 character thread title limit' Jul 3, 2023 iKODEAK said: For xf 2 you have to look at file /src/XF/Entity/Node.php find row PHP: $structure->columns = [ 'node_id' => ['type' => self::UINT, 'autoIncrement' => true, 'nullable' => true], 'title' => ['type' => self::STR, 'maxLength' => 50, 'required' => 'please_enter_valid_title' ], and change to PHP: $structure->columns = [ 'node_id' => ['type' => self::UINT, 'autoIncrement' => true, 'nullable' => true], 'title' => ['type' => self::STR, 'maxLength' => 100, 'required' =>... Click to expand...
example URL M XF 2.2 Thread 'Increasing the 150 character thread title limit' Jul 3, 2023 iKODEAK said: For xf 2 you have to look at file /src/XF/Entity/Node.php find row PHP: $structure->columns = [ 'node_id' => ['type' => self::UINT, 'autoIncrement' => true, 'nullable' => true], 'title' => ['type' => self::STR, 'maxLength' => 50, 'required' => 'please_enter_valid_title' ], and change to PHP: $structure->columns = [ 'node_id' => ['type' => self::UINT, 'autoIncrement' => true, 'nullable' => true], 'title' => ['type' => self::STR, 'maxLength' => 100, 'required' =>... Click to expand...