no commit message
This commit is contained in:
@@ -4,7 +4,7 @@ class groupClassAction extends Action
|
||||
public function groupusershow($table)
|
||||
{
|
||||
$s = 'and 1=2';
|
||||
$gid = $this->post('gid','0');
|
||||
$gid = (int)$this->post('gid','0');
|
||||
if($gid>0){
|
||||
$s = " and ( id in( select `sid` from `[Q]sjoin` where `type`='gu' and `mid`='$gid') or id in( select `mid` from `[Q]sjoin` where `type`='ug' and `sid`='$gid') )";
|
||||
}
|
||||
@@ -42,8 +42,8 @@ class groupClassAction extends Action
|
||||
|
||||
public function saveuserAjax()
|
||||
{
|
||||
$gid = $this->post('gid','0');
|
||||
$sid = $this->post('sid','0');
|
||||
$gid = (int)$this->post('gid','0');
|
||||
$sid = c('check')->onlynumber($this->post('sid','0'));
|
||||
$dbs = m('sjoin');
|
||||
$dbs->delete("`mid`='$gid' and `type`='gu' and `sid` in($sid)");
|
||||
$this->db->insert('[Q]sjoin','`type`,`mid`,`sid`', "select 'gu','$gid',`id` from `[Q]admin` where `id` in($sid)", true);
|
||||
@@ -53,8 +53,8 @@ class groupClassAction extends Action
|
||||
|
||||
public function deluserAjax()
|
||||
{
|
||||
$gid = $this->post('gid','0');
|
||||
$sid = $this->post('sid','0');
|
||||
$gid = (int)$this->post('gid','0');
|
||||
$sid = c('check')->onlynumber($this->post('sid','0'));
|
||||
$dbs = m('sjoin');
|
||||
$dbs->delete("`mid`='$gid' and `type`='gu' and `sid`='$sid'");
|
||||
$dbs->delete("`sid`='$gid' and `type`='ug' and `mid`='$sid'");
|
||||
|
||||
Reference in New Issue
Block a user