mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 07:09:20 +01:00
replaced unnecessary ereg_replace, which caused trouble with mbstring.function_overload=7
This commit is contained in:
parent
bb9f10fb29
commit
9352bd53c4
@ -230,7 +230,7 @@
|
|||||||
|
|
||||||
// The rest of this is used only for SQL->array
|
// The rest of this is used only for SQL->array
|
||||||
$colinfo = explode('(',$oProc->m_odb->f(1));
|
$colinfo = explode('(',$oProc->m_odb->f(1));
|
||||||
$prec = ereg_replace(')','',$colinfo[1]);
|
$prec = str_replace(')','',$colinfo[1]);
|
||||||
$scales = explode(',',$prec);
|
$scales = explode(',',$prec);
|
||||||
if ($scales[1])
|
if ($scales[1])
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user