diff options
Diffstat (limited to 'paste/include/storage/FileStorage.php')
-rw-r--r-- | paste/include/storage/FileStorage.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/paste/include/storage/FileStorage.php b/paste/include/storage/FileStorage.php index 09b222f..77cf0af 100644 --- a/paste/include/storage/FileStorage.php +++ b/paste/include/storage/FileStorage.php @@ -42,10 +42,12 @@ class FileStorage extends StorageEngine $this->storage_path = $path; } - public function setContent($content) + public function setContent($content, $language, $nick, $description) { global $config; + $content = PastifyText($content, $language, $description); + do { $filename = sha1(date('r') . rand(1000, getrandmax())); } while (file_exists(realpath($storage_path . '/' , $filename))); |