Forum Replies Created

Viewing 1 replies (of 1 total)
  • I found the same issue and patched it locally. Here’s my diff:

    Index: StormTwitter.class.php
    ===================================================================
    --- StormTwitter.class.php      (revision 1962351)
    +++ StormTwitter.class.php      (working copy)
    @@ -86,7 +86,8 @@
       }
    
       private function getCacheLocation() {
    -    return $this->defaults['directory'].'.tweetcache';
    +    $up = wp_upload_dir();
    +    return $up['basedir'] . '/.tweetcache';
       }
    
       private function getOptionsHash($options) {
    • This reply was modified 6 years, 1 month ago by faerysteel.
Viewing 1 replies (of 1 total)