- πΈπ°Slovakia sano
There are more problematic places in that file, besides the one mentioned here. For example, I just run into:
Deprecated: mb_strlen(): Passing null to parameter #1 ($string) of type string is deprecated in /includes/unicode.inc on line 482
referring to:
function drupal_strlen($text) { global $multibyte; if ($multibyte == UNICODE_MULTIBYTE) { return mb_strlen($text); } else { // Do not count UTF-8 continuation bytes. return strlen(preg_replace("/[\x80-\xBF]/", '', $text)); } }
I encountered the error when adding a new action (adding a variable) into a rule, when clicking "Switch to data selection". The error appears in a JS dialog window.
- πΈπ°Slovakia poker10
@sano
drupal_strlen()
issue is being addressed here: π _form_validate sends null to drupal_strlen triggering deprecation notice Needs work , so any help/feedback is welcome. Thanks!