Warning: htmlspecialchars() expects parameter 1 to be string, array given in check_plain()

Created on 9 January 2019, about 6 years ago
Updated 16 July 2023, over 1 year ago

I'm receiving "htmlspecialchars() expects parameter 1 to be string, array given in check_plain() in bootstrap.inc" warnings for anonymous users, and I've identified the problematic array (per #10 in this issue ) being IP location information, which I believe is from this module as disabling it makes it go away.

An example of the reported array appearing where a string is expected:

Array ( [ipNumber] => ####### [ipVersion] => 4 [ipAddress] => ######### 1 [mobileCarrierName] => [mnc] => [mcc] => [weatherStationCode] => [weatherStationName] => [areaCode] => [iddCode] => [longitude] => ###### [latitude] => ##### [countryCode] => ## [countryName] => ##### [usageType] => [elevation] => [netSpeed] => [timeZone] => [zipCode] => ### [domainName] => [isp] => [cityName] => #### [regionName] => ##### )

The message:
"Warning: htmlspecialchars() expects parameter 1 to be string, array given in check_plain() (line 1848 of /...includes/bootstrap.inc)."

This message is invisible to me as an admin, other than a notice appearing in the recent log messages, but is curiously only available on screen to anonymous users. (I'm still in development mode). Despite the fact that I've assigned the IP collection to only occur on one page per the settings -- I've tried with the preceding slash and without for the path-- it is grabbing IP location info on every page of the site, and thus providing the warning everywhere.

I did see this warning sort of addressed/dismissed from an earlier user. I am not using a custom module: just SmartIP and Device geolocation. For now, I will just not use the module, but would prefer to know what I can adjust my settings or fix it.

Apologies if I've made any mistakes in reporting this issue, as it's my first.

Thanks!

🐛 Bug report
Status

Postponed: needs info

Version

2.0

Component

Code

Created by

🇺🇸United States pls4e

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇸🇰Slovakia poker10

    Thanks for reporting this.

    There are only two places (three occurences) in the module, where check_plain() is used:

    device_geolocation_detector_ajax()

          if (!empty($address) && is_string($address) && is_string($label)) {
            $label = check_plain($label);
            if (!is_array($address)) {
              $smart_ip_session['location'][$label] = check_plain($address);
            }
    

    smart_ip_admin_settings_validate()

      $list = check_plain($form_state['values']['smart_ip_allowed_pages']);
    

    The first one checking $label and $address has conditions to verify, if both of these variables are arrays. The second one is a value of textarea from the form submission. I am not sure how any of these can be an array under standard circumstances. Would it be possible to debug it a bit more to provide a backtrace, so that we can see what is the source of this problem?

    Thanks!

  • 🇮🇹Italy apaderno Brescia, 🇮🇹

    Given that check_plain() uses the following code, how can htmlspecialchars() complain about getting an array instead of a string?

    function check_plain($text) {
      return htmlspecialchars((string) $text, ENT_QUOTES, 'UTF-8');
    }
    

    I tried the following code on https://3v4l.org.

    $text = array();
    
    echo htmlspecialchars((string) $text, ENT_QUOTES, 'UTF-8'), "\n";
    

    Except some PHP 5 versions that do not throw warnings/notices, the other PHP versions shown this.

    PHP 8

    Warning: Array to string conversion in /in/ruWXX on line 5
    Array

    PHP 4, PHP 5, PHP 7

    Notice: Array to string conversion in /in/ruWXX on line 5
    Array

  • 🇮🇹Italy apaderno Brescia, 🇮🇹

    Probably, on 2019, check_plain() did not cast its parameter to a string.

    It seems the OP was using the 7.x-2.53 release. #2956717: Warning after installing and configuring Smart IP is reported between the fixed issues for release 7.x-2.51 .
    Either this error was caused by something else that still has to be fixed, or the OP was not using the 7.x-2.53 release.

  • 🇸🇰Slovakia poker10

    Thanks @apaderno. Yes, this casting to string in check_plain() was added to D7 core by #3254699: [D7 PHP 8.1] check_plain(): Passing null to parameter #1 check_plain() includes/bootstrap.inc, line 1907 in February 2022. So this is another issue that could affect this original report.

  • Status changed to Closed: outdated 4 months ago
  • heddn Nicaragua

    Drupal 7 is no longer supported in a month. Closing old issues. If this is still something you want addressed in the current 5.x version of the module, please re-open and provide some next steps.

Production build 0.71.5 2024