From e1f7f69c1986f79464bc9d7d465ea8c5fcd4289e Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Fri, 11 Dec 2009 03:55:30 +0100 Subject: dessicion if store markuped text or plain text now at StorageEngines --- paste/include/storage/FileStorage.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'paste/include/storage/FileStorage.php') 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))); -- cgit v1.2.3