mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-23 05:41:02 +01:00
fix PHP Deprecated: Using ${var} in strings is deprecated, use {$var} instead
This commit is contained in:
parent
25293895d4
commit
5de5032222
@ -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