Skip to content

Commit

Permalink
move datastorage and update plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
james2doyle committed May 11, 2014
1 parent 67a93b8 commit a3f7414
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions datastorage/.htaccess → lib/datastorage/.htaccess
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
order deny, allow
order deny, allow

deny from all
deny from all

allow from 127.0.0.1
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class SimpleFileDataPersistence implements PersistenceInterface {
* the constructor
*/
public function __construct() {
$this->dataDirectory = ROOT_DIR . 'datastorage/';
$this->dataDirectory = LIB_DIR . 'datastorage/';
}

/**
Expand Down Expand Up @@ -102,4 +102,4 @@ protected function getInternalKey($key) {
protected function getStorageFile($key) {
return $this->dataDirectory . $this->getInternalKey($key) . '.ds';
}
}
}

0 comments on commit a3f7414

Please sign in to comment.