Make sure MySQL is not saying 'this' = 'this ' is true
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
b212151af1
commit
16e9bf2309
|
@ -52,4 +52,12 @@ class MySqlExpressionBuilder extends ExpressionBuilder {
|
||||||
$y = $this->helper->quoteColumnName($y);
|
$y = $this->helper->quoteColumnName($y);
|
||||||
return $this->expressionBuilder->comparison($x, ' COLLATE ' . $this->charset . '_general_ci LIKE', $y);
|
return $this->expressionBuilder->comparison($x, ' COLLATE ' . $this->charset . '_general_ci LIKE', $y);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function eq($x, $y, $type = null) {
|
||||||
|
return 'BINARY ' . parent::eq($x, $y, $type);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function neq($x, $y, $type = null) {
|
||||||
|
return 'BINARY ' . parent::neq($x, $y, $type);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -188,7 +188,7 @@ class Manager extends PublicEmitter implements IUserManager {
|
||||||
*/
|
*/
|
||||||
public function userExists($uid) {
|
public function userExists($uid) {
|
||||||
$user = $this->get($uid);
|
$user = $this->get($uid);
|
||||||
return ($user !== null);
|
return $user !== null && $user->getUID() === $uid;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue