Hello,
I'm trying to suspend an account (And I don't know real state of that account is suspended or not).
I do exact as example:
$sock->query('/CMD_SELECT_USERS',
array(
'location' => 'CMD_SELECT_USERS',
'suspend' => 'Suspend', // note - this can also be 'Unsuspend'
'select0' => '{user}'
));
$result = $sock->fetch_body();
But I'm very surprise that if that account is Suspended, then it will be Unsuspended and vice versal.
Can you give me of how to prevent unsuspend automatically? I always use 'suspend' => 'Suspend'
Thank you very much.
I'm trying to suspend an account (And I don't know real state of that account is suspended or not).
I do exact as example:
$sock->query('/CMD_SELECT_USERS',
array(
'location' => 'CMD_SELECT_USERS',
'suspend' => 'Suspend', // note - this can also be 'Unsuspend'
'select0' => '{user}'
));
$result = $sock->fetch_body();
But I'm very surprise that if that account is Suspended, then it will be Unsuspended and vice versal.
Can you give me of how to prevent unsuspend automatically? I always use 'suspend' => 'Suspend'
Thank you very much.