Hi,
had to install this module as a dependency of the new branch of textile.module (which i upgraded to get libraries support).
I get an error because there is one call to drupal_static(), which obviously is not defined in D6.
I assume this has to be replaced by Vars::staticValue() then..
<?php
public function getLibraryPath($library, $unused = array()) {
global $profile;
$config = conf_path();
$id = preg_replace('/[^a-z0-9_\-]/i', '_', $library);
$path = &Vars::staticValue("vars_library_path_$id", array());
?>
Comments
Comment #1
Anonymous (not verified) commentedI apologize for the delay in updating the code, and resolving the issue.
I have changed the code to use the method exposed by the Vars class, and created a new official release.
Thank you for your report, and help.