Needs review
Project:
SimplePie Core
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
21 Dec 2010 at 22:46 UTC
Updated:
23 Mar 2016 at 20:19 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
agerson commentedhttp://drupal.org/update/modules/6/7#file_directory_path
Comment #2
agerson commentedEDIT: This patch does not work
Comment #3
agerson commentedThis one should. Please test.
Comment #4
zeahgan_white commentedthe patch doesn't work... keeps saying that there aren't any .info files
Comment #5
zeahgan_white commentedthe patch doesn't work... keeps saying that there aren't any .info files
Comment #6
digitalRoots commented'#description' => t('Subdirectory in the directory %dir where cache files will be stored.', array('%dir' => file_directory_path() . '/')),
to
'#description' => t('Subdirectory in the directory %dir where cache files will be stored.', array('%dir' => variable_get('file_' . file_default_scheme() . '_path', conf_path() . '/'))),
$simplepie->set_cache_location(file_directory_path() .'/'. $cache_location);
to
$simplepie->set_cache_location(variable_get('file_' . file_default_scheme() . '_path', conf_path() .'/'. $cache_location));
Comment #7
kenorb commented