diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2011-08-24 15:22:49 -0700 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2011-08-24 15:22:49 -0700 |
commit | 2dace654a99396ab674f50829046ed703d3a36be (patch) | |
tree | 57add762814a2156eac54a2d50658a805be60ff9 /mod/categories/actions | |
parent | 9f13557c2e7422cb15ce109adbe5714d6d78fc9e (diff) | |
download | elgg-2dace654a99396ab674f50829046ed703d3a36be.tar.gz elgg-2dace654a99396ab674f50829046ed703d3a36be.tar.bz2 |
Refs #3746. Updated categories for 1.8. Still some deprecation notices, but functional.
Diffstat (limited to 'mod/categories/actions')
-rw-r--r-- | mod/categories/actions/save.php | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/mod/categories/actions/save.php b/mod/categories/actions/save.php deleted file mode 100644 index 26222a030..000000000 --- a/mod/categories/actions/save.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php -/** - * Saves the available categories for the site - * - * @note The categories for an object are saved through an event handler: categories_save() - * - * @package ElggCategories - */ - -$categories = get_input('categories'); -$categories = string_to_tag_array($categories); - -$site = elgg_get_site_entity(); -$site->categories = $categories; -system_message(elgg_echo("categories:save:success")); - -elgg_delete_admin_notice('categories_admin_notice_no_categories'); - -forward(REFERER);
\ No newline at end of file |