an other one: fix sql error if link-id (accidently) contains non-ascii chars

This commit is contained in:
Ralf Becker 2015-07-23 11:50:06 +00:00
parent d320439e1e
commit cc6460e8c0

View File

@ -303,6 +303,7 @@ class solink
}
}
$deleted = array();
try {
foreach(self::$db->select(self::TABLE,'*',$where,__LINE__,__FILE__) as $row)
{
$deleted[] = $row;
@ -318,6 +319,12 @@ class solink
{
self::$db->delete(self::TABLE,$where,__LINE__,__FILE__);
}
}
// catch Illegal mix of collations (ascii_general_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE) for operation '=' (1267)
// caused by non-ascii chars compared with ascii field uid
catch(egw_exception_db $e) {
_egw_log_exception($e);
}
return $deleted;
}