mirror of
https://github.com/fusionpbx/fusionpbx.git
synced 2025-12-30 00:53:50 +00:00
Fix invalid return point in functions.php (#7608)
The return statement would cause the functions.php to return too early before all functions below could be declared.
This commit is contained in:
@@ -230,6 +230,7 @@ if (!function_exists('uuid')) {
|
|||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return '';
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1974,7 +1975,7 @@ if (!function_exists('send_email')) {
|
|||||||
$email_error = $email->email_error;
|
$email_error = $email->email_error;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//encrypt a string
|
//encrypt a string
|
||||||
|
|||||||
Reference in New Issue
Block a user