Bug #21868 » pibasi_deprecated_spliti.patch
class.tslib_pibase.php (working copy) | ||
---|---|---|
}
|
||
// Split the "FROM ... WHERE" string so we get the WHERE part and TABLE names separated...:
|
||
list($TABLENAMES,$WHERE) = spliti('WHERE', trim($query), 2);
|
||
list($TABLENAMES,$WHERE) = preg_split('/WHERE/i', trim($query), 2);
|
||
$TABLENAMES = trim(substr(trim($TABLENAMES),5));
|
||
$WHERE = trim($WHERE);
|
||