mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-14 18:48:21 -07:00
Перенос файлов движка в корень
This commit is contained in:
parent
584f692288
commit
f94c0dd2ee
585 changed files with 14 additions and 14 deletions
52
library/ajax/edit_group_profile.php
Normal file
52
library/ajax/edit_group_profile.php
Normal file
|
@ -0,0 +1,52 @@
|
|||
<?php
|
||||
|
||||
if (!defined('IN_AJAX')) die(basename(__FILE__));
|
||||
|
||||
global $bb_cfg, $userdata, $lang;
|
||||
|
||||
if (!$group_id = intval($this->request['group_id']) OR !$group_info = get_group_data($group_id))
|
||||
{
|
||||
$this->ajax_die($lang['NO_GROUP_ID_SPECIFIED']);
|
||||
}
|
||||
if (!$mode = (string) $this->request['mode'])
|
||||
{
|
||||
$this->ajax_die('No mode specified');
|
||||
}
|
||||
|
||||
$value = $this->request['value'] = (string) (isset($this->request['value'])) ? $this->request['value'] : 0;
|
||||
|
||||
if (!IS_ADMIN && $userdata['user_id'] != $group_info['group_moderator'])
|
||||
{
|
||||
$this->ajax_die($lang['ONLY_FOR_MOD']);
|
||||
}
|
||||
|
||||
switch ($mode)
|
||||
{
|
||||
case 'group_name':
|
||||
case 'group_signature':
|
||||
case 'group_description':
|
||||
$value = htmlCHR($value, false, ENT_NOQUOTES);
|
||||
$this->response['new_value'] = $value;
|
||||
break;
|
||||
|
||||
case 'group_type':
|
||||
$this->response['new_value'] = $value;
|
||||
break;
|
||||
|
||||
case 'release_group':
|
||||
$this->response['new_value'] = $value;
|
||||
break;
|
||||
|
||||
case 'delete_avatar':
|
||||
delete_avatar(GROUP_AVATAR_MASK . $group_id, $group_info['avatar_ext_id']);
|
||||
$value = 0;
|
||||
$mode = 'avatar_ext_id';
|
||||
$this->response['act'] = $value;
|
||||
break;
|
||||
|
||||
default:
|
||||
$this->ajax_die('Unknown mode');
|
||||
}
|
||||
|
||||
$value_sql = DB()->escape($value, true);
|
||||
DB()->query("UPDATE ". BB_GROUPS ." SET $mode = $value_sql WHERE group_id = $group_id LIMIT 1");
|
Loading…
Add table
Add a link
Reference in a new issue