Closed (fixed)
Project:
Chili highlighter
Version:
5.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Reporter:
Created:
10 Nov 2007 at 13:58 UTC
Updated:
31 Jul 2010 at 03:10 UTC
Jump to comment: Most recent
If you try to use the module without clean_urls enabled, it won't work.
Change line 13, from:
"'". url($path) ."/';"
To
"'". $path ."/';"
It fix whatever the clean_urls are enabled or not.
cheers
Comments
Comment #1
Anonymous (not verified) commentedSimply using
$pathwould not work when Drupal is installed in a sub-directory.The correct code should probably use
base_path() . $path.Comment #2
Anonymous (not verified) commentedThe code has been changed, and committed. Thanks for your report.