Fixed to not cache the getBlob call with git.

dev
Loic d'Anterroches 2008-11-21 21:47:43 +01:00
parent f674992fc8
commit b94ca8215f
1 changed files with 3 additions and 3 deletions

View File

@ -211,9 +211,9 @@ class IDF_Scm_Git
*/
public function getBlob($request_file_info, $dummy=null)
{
return IDF_Scm::shell_exec(sprintf('GIT_DIR=%s git-cat-file blob %s',
escapeshellarg($this->repo),
escapeshellarg($request_file_info->hash)));
return shell_exec(sprintf('GIT_DIR=%s git-cat-file blob %s',
escapeshellarg($this->repo),
escapeshellarg($request_file_info->hash)));
}
/**