Skip to content
Snippets Groups Projects
Commit 53f3688b authored by Karsten Dambekalns's avatar Karsten Dambekalns
Browse files

Fixed bug #825 by adding longtext to the list of known data types.

git-svn-id: https://svn.typo3.org/TYPO3v4/Core/trunk@583 709f56b5-9817-0410-a4d7-c38de5d9e867
parent 7a55e119
Branches
Tags
No related merge requests found
......@@ -957,7 +957,7 @@ class t3lib_sqlparser {
$result = array();
// Field type:
if ($result['fieldType'] = $this->nextPart($parseString,'^(int|smallint|tinyint|mediumint|bigint|double|numeric|decimal|varchar|char|text|tinytext|mediumtext|blob|tinyblob|mediumblob|longblob)([[:space:]]+|\()')) {
if ($result['fieldType'] = $this->nextPart($parseString,'^(int|smallint|tinyint|mediumint|bigint|double|numeric|decimal|varchar|char|text|tinytext|mediumtext|longtext|blob|tinyblob|mediumblob|longblob)([[:space:]]+|\()')) {
// Looking for value:
if (substr($parseString,0,1)=='(') {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment