Under admin/reports/status module shows warning while using jQuery 1.11. (for Nivo Slider jQuery version)
I guess the check in nivo_slider.module at line 37 evaluates to false since the value of $library['version'] is actually smaller than 1.7.
if (($library = drupal_get_library('system', 'jquery')) && $library['version'] >= 1.7) {

Changing this part to
if (($library = drupal_get_library('system', 'jquery')) && (($library['version'] >= 1.7) || ($library['version'] <= 1.4))) {
solves the problem, but I think a more sophisticated solution should be applied.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

raveendrab’s picture

I have to set the version to 1.10.

shyam kumar kunkala’s picture

Assigned: Unassigned » shyam kumar kunkala

I am working on this issue..

shyam kumar kunkala’s picture

Status: Active » Needs review
FileSize
661 bytes

Fixed the issue. Please review the attached patch.

Hemanth Kumar Kunkala’s picture

Status: Needs review » Reviewed & tested by the community

I tested the patch. The issue is fixed and code is good.

Devin Carlson’s picture

Version: 7.x-1.11 » 7.x-1.x-dev
Priority: Minor » Normal
Status: Reviewed & tested by the community » Fixed

Thanks for the patch and review!

Committed to Nivo Slider 7.x-1.x.

shyam kumar kunkala’s picture

Status: Fixed » Closed (fixed)