Closed (fixed)
Project:
SafeClick
Version:
6.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
13 Aug 2010 at 18:04 UTC
Updated:
24 Sep 2010 at 10:20 UTC
As I use a different base path (http://www.example.com/drupal6), the SafeClick .js and .css files were not found.
So I changed all $paths variables of the safeclick.module file:
From:
$path = drupal_get_path('module', 'safeclick');
To:
$path = base_path() . drupal_get_path('module', 'safeclick');
Then I removed every leading "/" where the $path variable was used.
Now everything works fine. :)
Comments
Comment #1
p0deje commentedThanks. Applied suggested solution to module.