Temporarily exclude the email_queue function transcribe.
This commit is contained in:
parent
cdcfcfd520
commit
eb5f6afb5e
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
|
|
|
|||
Loading…
Reference in New Issue