tbrehm
2008-12-14 d062c991405b38b22485517b033480e5514eae9e
Fixed min_uid bug when deleting users.
1 files modified
2 ■■■ changed files
server/plugins-available/shelluser_base_plugin.inc.php 2 ●●● patch | view | raw | blame | history
server/plugins-available/shelluser_base_plugin.inc.php
@@ -126,7 +126,7 @@
        
        // Get the UID of the user
        $userid = intval($app->system->getuid($data['old']['username']));
        if($userid > 999) {
        if($userid > $this->min_uid) {
            $command = 'userdel';
            $command .= ' '.escapeshellcmd($data['old']['username']);