mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 15:33:23 +01:00
fix PHP Deprecated: Using ${var} in strings is deprecated, use {$var} instead
This commit is contained in:
parent
10e6831a7a
commit
1f7325b648
@ -1676,7 +1676,7 @@ class Base
|
||||
{
|
||||
if ((int) $this->debug >= 4)
|
||||
{
|
||||
echo "<p>not_unique in ".array2string($col)." as for '$key_col': '${data[$key_col]}' != '${other[$key_col]}'</p>\n";
|
||||
echo "<p>not_unique in ".array2string($col)." as for '$key_col': '{$data[$key_col]}' != '{$other[$key_col]}'</p>\n";
|
||||
}
|
||||
return $n; // different entry => $n not unique
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user