Temporarily exclude the email_queue function transcribe.

This commit is contained in:
FusionPBX
2022-03-22 14:07:22 -06:00
committed by GitHub
parent cdcfcfd520
commit eb5f6afb5e

View File

@@ -2285,7 +2285,10 @@ function number_pad($number,$n) {
//include additional functions
$functions = glob("{".$_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/resources/functions/*.php,".$_SERVER["DOCUMENT_ROOT"].PROJECT_PATH."/*/*/resources/functions/*.php}", GLOB_BRACE);
foreach($functions as $function) {
require($function);
$path = pathinfo($function);
if ($path['filename'] != 'transcribe') {
require($function);
}
}
?>