Closed (fixed)
Project:
Application Toolbar (Appbar)
Version:
6.x-2.x-dev
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
18 Oct 2010 at 22:11 UTC
Updated:
20 Sep 2011 at 15:15 UTC
I placed the module in another directory but I keep getting this and it slows site performance: /sites/all/modules/appbar/open.png not found
any thoughts on how to handle it?
Comments
Comment #1
icecreamyou commentedThe code that generates the path for the image looks like this:
The command
drupal_get_path('module', 'appbar')will get the correct path of the directory where you placed the module, even if it's not in sites/all/modules.If your site isn't using the correct path, it's probably because the old path is either cached locally or aggregated on the server. Also check to make sure the image is actually in the module folder.
Comment #2
socialnicheguru commentedit is being referred from the appbar.css file
Comment #3
icecreamyou commentedOhhhh. Oops. That line can probably be removed altogether, or overridden in your theme's stylesheet as an interim solution.
Comment #4
jcisio commentedAs you apply patch by hand, this should work:
replace:
background: scroll transparent url("/sites/all/modules/appbar/open.png") no-repeat right center;
by:
background: scroll transparent url("open.png") no-repeat right center;
Comment #5
jcisio commentedComment #6
icecreamyou commentedCommitted fix to dev. Thanks!
Comment #8
Manuel commentedSorry if I've re-open it this issue.
It is fixed in DEV version.
Comment #9
Manuel commentedFixed in DEV