После установки модуля iproduct video в Opencart, модуль еле живой, в админке ругается:
Notice: A non well formed numeric value encountered in /admin/model/extension/module/iproductvideo.php on line 229
Сама строка: $val *= 1024;
Весь блок:
private function return_bytes($val) { //from http://php.net/manual/en/function.ini-get.php
// $val = trim($val);
$last = strtolower($val[strlen($val)-1]);
switch($last) {
// The 'G' modifier is available since PHP 5.1.0
case 'g':
$val *= 1024;
case 'm':
$val *= 1024;
case 'k':
$val *= 1024;
}
return $val;
}
После сохранения настроек:
A non well formed numeric value encountered in admin/model/extension/module/iproductvideo.php on line 229
Warning: Cannot modify header information - headers already sent by (output started at admin/controller/startup/error.php:34) in /system/library/response.php on line 12
Как починить?