*

buninsan

  • **
  • 14 posts
Hello!
Sorry, I'm using Google translator.
Please tell me how to fix warnings on php7 and higher
Warning: strtolower() expects parameter 1 to be string, array given in /oc-content/plugins/cache/functions.php on line 277

*

MB Themes

Re: Warning: strtolower() expects parameter 1 to be string, array given
« Reply #1 on: January 13, 2019, 10:30:55 PM »
Let me check that
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

MB Themes

Re: Warning: strtolower() expects parameter 1 to be string, array given
« Reply #2 on: January 14, 2019, 11:22:44 AM »
@buninsan
In file:
oc-content/plugins/cache/functions.php

Find:
Code: [Select]
$output .= strtolower($n) . '-' . strtolower($v);
change to:
Code: [Select]
$output .= @strtolower($n) . '-' . @strtolower($v);
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

buninsan

  • **
  • 14 posts
Re: Warning: strtolower() expects parameter 1 to be string, array given
« Reply #3 on: January 16, 2019, 01:49:33 PM »
Thank!