diff --git a/resources/functions.php b/resources/functions.php index e9a302da0d..cd974cfcd5 100644 --- a/resources/functions.php +++ b/resources/functions.php @@ -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); + } } ?>