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

Anonymous’s picture

Title: D6 version does a drupal_static(). » The code uses a Drupal 7 function
Status: Active » Fixed

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

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.