1 người đang xem

Pussy

New Member
Bài viết: 950 Tìm chủ đề
8520 8520
Lỗi : Fatal error: Cannot 'break' 2 levels in /public_html/library/WidgetFramework/Helper/Index.php on line 90

Lỗi này do mod Widget Framework không tương thích với PHP phiên bản 7.0

Các bạn có 2 cách fix

1. Chọn PHP phiên bản thấp hơn: 5.6

2. Mở file Index đó lên tìm ở dòng thứ 90

Mã:
if (!$selected)
            {
                // still not selected!?
                // try with $extraTabs now
                foreach ($extraTabs as &$tabs)
                {
                    $tab['selected'] = true;
                    $selected = true;
                    break 2;// <<<<<<<<<<<<<<<<<<<
                }
            }

Thay break 2; bằng break;
 
Last edited by a moderator:

Users who are viewing this thread

Back