Use the correct variable for PHP

This commit is contained in:
Andrew Ruthven 2021-02-26 00:39:59 +13:00
parent 52f1e341a6
commit 9cdeae54e2

View File

@ -660,7 +660,7 @@ class Principal {
* @return boolean True if found.
*/
public function searchEmails( $email ) {
if ( $self->email == $email ) {
if ( $this->email == $email ) {
return 1;
}