Fix missing logical not in admin/users
This commit is contained in:
		
					parent
					
						
							
								aa36d7ff75
							
						
					
				
			
			
				commit
				
					
						9a13e67943
					
				
			
		
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -1568,7 +1568,7 @@ function admin_page_users(App $a)
 | 
			
		|||
	if ($a->argc > 2) {
 | 
			
		||||
		$uid = $a->argv[3];
 | 
			
		||||
		$user = dba::selectFirst('user', ['username', 'blocked'], ['uid' => $uid]);
 | 
			
		||||
		if (DBM::is_result($user)) {
 | 
			
		||||
		if (!DBM::is_result($user)) {
 | 
			
		||||
			notice('User not found' . EOL);
 | 
			
		||||
			goaway('admin/users');
 | 
			
		||||
			return ''; // NOTREACHED
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue