diff options
author | Tom Needham <needham.thomas@gmail.com> | 2011-09-28 15:15:04 +0100 |
---|---|---|
committer | Tom Needham <needham.thomas@gmail.com> | 2011-09-28 15:15:04 +0100 |
commit | 1f74e76d834e9a2ed24236b51c662072f999860c (patch) | |
tree | 3c2551d6867b6a7f11b635de400c506d0da556fb /lib | |
parent | c6f78fbe43dbe3f6875b72b34592bde25fc78d0b (diff) | |
download | nextcloud-server-1f74e76d834e9a2ed24236b51c662072f999860c.tar.gz nextcloud-server-1f74e76d834e9a2ed24236b51c662072f999860c.zip |
Implemented ace-edtior as an app. Basic file editing and saving supported.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/filesystem.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/filesystem.php b/lib/filesystem.php index b97fa8d784a..f84cda20eac 100644 --- a/lib/filesystem.php +++ b/lib/filesystem.php @@ -441,6 +441,10 @@ class OC_Filesystem{ return $files; } + + static public function update_session_file_hash($sessionname,$sessionvalue){ + $_SESSION[$sessionname] = $sessionvalue; + } /** * abstraction for running most basic operations |