Closed (fixed)
Project:
Sasson
Version:
7.x-3.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
19 Aug 2012 at 22:03 UTC
Updated:
2 Apr 2014 at 16:30 UTC
Jump to comment: Most recent
On the sass.inc file the destination directory is not correctly set because file_directory_path doesn't exists anymore on Drupal 7:
The line:
'directory' => variable_get('file_directory_path', conf_path() . '/files') . '/sasson/' . $theme_name,
Should be fixed using the following method:
'directory' => variable_get('file_' . file_default_scheme() . '_path', conf_path() . '/files') . '/sasson/' . $theme_name,
Thanks :-)
Comments
Comment #1
tsi commentedhttp://drupal.org/commitlog/commit/31168/60c8cc6649fbd92df323578f0d60149...
Thanks
Comment #2.0
(not verified) commentedupdated text