"С миру по нитке..." Форум

"С миру по нитке..." Форум (http://forum.vika-plus.ru/index.php)
-   Копилка опыта (http://forum.vika-plus.ru/forumdisplay.php?f=24)
-   -   Vbulletin - PHP Warning: trim() & PHP Warning: number_format() (http://forum.vika-plus.ru/showthread.php?t=1167)

admin 10.04.2016 17:47

Vbulletin - PHP Warning: trim() & PHP Warning: number_format()
 
После изменения версии PHP на 5,3 на форуме при открытии дневников вверху появились две строчки:

Код:

PHP Warning: trim() expects parameter 1 to be string, array given in ..../includes/functions.php on line ...
Код:

PHP Warning: number_format() expects parameter 1 to be double, array given in ..../includes/functions.php on line ...
Лечится следующим образом:

открываем Открываем файл includes/blog_functions.php

PHP код:

    $blogstats $vbulletin->blogstats;
    foreach (
$blogstats AS $key => $value)
    {
        
$blogstats["$key"] = vb_number_format($value);
    } 

и добавляем @ перед "vb_number_format($value);"

PHP код:

$blogstats["$key"] = @vb_number_format($value); 

Проблема решена... :ura:


Часовой пояс GMT +5, время: 00:56.

Powered by vBulletin® Version 3.8.9
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd. Перевод: zCarot