aboutsummaryrefslogtreecommitdiff
path: root/mod/file/actions/file/save.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/file/actions/file/save.php')
-rw-r--r--mod/file/actions/file/save.php48
1 files changed, 0 insertions, 48 deletions
diff --git a/mod/file/actions/file/save.php b/mod/file/actions/file/save.php
deleted file mode 100644
index 17a9b16fb..000000000
--- a/mod/file/actions/file/save.php
+++ /dev/null
@@ -1,48 +0,0 @@
-<?php
- /**
- * Elgg file browser save action
- *
- * @package ElggFile
- */
-
- global $CONFIG;
-
- // Get variables
- $title = strip_tags(get_input("title"));
- $desc = get_input("description");
- $tags = get_input("tags");
- $access_id = (int) get_input("access_id");
-
- $guid = (int) get_input('file_guid');
-
- if (!$file = get_entity($guid)) {
- register_error(elgg_echo("file:uploadfailed"));
- forward(elgg_get_site_url() . "pg/file/" . get_loggedin_user()->username);
- exit;
- }
-
- $result = false;
-
- $container_guid = $file->container_guid;
- $container = get_entity($container_guid);
-
- if ($file->canEdit()) {
-
- $file->access_id = $access_id;
- $file->title = $title;
- $file->description = $desc;
-
- // Save tags
- $tags = explode(",", $tags);
- $file->tags = $tags;
-
- $result = $file->save();
- }
-
- if ($result)
- system_message(elgg_echo("file:saved"));
- else
- register_error(elgg_echo("file:uploadfailed"));
-
- forward(elgg_get_site_url() . "pg/file/" . $container->username);
-?> \ No newline at end of file