The template.php is trying to load javascript from the salamander theme which in my case is not installed. The other issue that affects *unix systems is the name of the js file is specified incorrectly.

Change the 3rd line of the template.php script from:
drupal_add_js(drupal_get_path('theme', 'salamander') . '/js/jquery.pngfix.js', 'theme');

To:
drupal_add_js(drupal_get_path('theme', 'ability') . '/js/jquery.pngFix.js', 'theme');

Comments

csc4’s picture

Thanks for this information. I had the same problem and this was a big help.

Seems odd the mixture of Salamander references in the theme as a whole.