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
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.