Khi nâng cấp website lên Joomla 3.x tôi gặp phải lỗi sau với plugin jw_allvideos. Khắc phục như sau:
Thay đoạn mã:
if (!$params) $params = class_exists('JParameter') ? new JParameter(null) : new JRegistry(null);
$parsedInModule = $params->get('parsedInModule');
Bằng đoạn:
$params = new JRegistry(null);
$parsedInModule = $params->get('parsedInModule');
Hi vọng các bạn gặp trường hợp tương tự sẽ khắc phục được lỗi này.