mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
"curly brackets are depricated in php6"
This commit is contained in:
parent
f2b50bdf8b
commit
bf3c88731d
@ -242,7 +242,7 @@ class addressbook_sql extends so_sql
|
|||||||
// fix cat_id filter to search in comma-separated multiple cats and return subcats
|
// fix cat_id filter to search in comma-separated multiple cats and return subcats
|
||||||
if (($cats = $filter['cat_id']))
|
if (($cats = $filter['cat_id']))
|
||||||
{
|
{
|
||||||
if ($filter['cat_id']{0} == '!')
|
if ($filter['cat_id'][0] == '!')
|
||||||
{
|
{
|
||||||
$filter['cat_id'] = substr($filter['cat_id'],1);
|
$filter['cat_id'] = substr($filter['cat_id'],1);
|
||||||
$not = 'NOT';
|
$not = 'NOT';
|
||||||
@ -277,7 +277,7 @@ class addressbook_sql extends so_sql
|
|||||||
{
|
{
|
||||||
foreach($criteria as $col => $val)
|
foreach($criteria as $col => $val)
|
||||||
{
|
{
|
||||||
if ($col{0} == '#') // search for a value in a certain custom field
|
if ($col[0] == '#') // search for a value in a certain custom field
|
||||||
{
|
{
|
||||||
$valarray=array();
|
$valarray=array();
|
||||||
# val may be a list of values, constructed by multiple select fields, to be able to do the contains feature of adv-search
|
# val may be a list of values, constructed by multiple select fields, to be able to do the contains feature of adv-search
|
||||||
|
Loading…
Reference in New Issue
Block a user