Fix when ProcessMaker is installed in a folder with a dot.

This commit is contained in:
Alexandre Rosenfeld
2011-02-18 16:50:08 +00:00
parent 8f25977486
commit 9cbb477cf8

View File

@@ -199,7 +199,7 @@ $startingTime = array_sum(explode(' ',microtime()));
break;
default :
$realPath = explode('?', $realPath);
$realPath[0] .= strpos($realPath[0], '.') === false ? '.php' : '';
$realPath[0] .= strpos(basename($realPath[0]), '.') === false ? '.php' : '';
G::streamFile ( $realPath[0] );
die;
}