aboutsummaryrefslogtreecommitdiff
path: root/mod/categories/actions/save.php
blob: c8d8bd0510be58ab1609c054e8126b41aa9d9914 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

	/**
	 * Elgg categories plugin category saver
	 * 
	 * @package ElggCategories
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd <info@elgg.com>
	 * @copyright Curverider Ltd 2008-2010
	 * @link http://elgg.com/
	 */

		$categories = get_input('categories');
		$categories = string_to_tag_array($categories);
		
		global $CONFIG;
		$site = $CONFIG->site;
		$site->categories = $categories;
		system_message(elgg_echo("categories:save:success"));
		
		forward($_SERVER['HTTP_REFERER']);

?>