diff options
author | Simone Rota <sip@crux.nu> | 2006-10-20 01:39:25 +0200 |
---|---|---|
committer | Simone Rota <sip@crux.nu> | 2006-10-20 01:39:25 +0200 |
commit | 86c7bc9bc2cb4197033ec47a0d207a20434af026 (patch) | |
tree | d6145abae776794ce087c6e1c1732e9f6467da38 | |
parent | f7c87c5e82170d283ed6e00303b69f19afe00aae (diff) | |
download | webtools-86c7bc9bc2cb4197033ec47a0d207a20434af026.tar.gz webtools-86c7bc9bc2cb4197033ec47a0d207a20434af026.tar.xz |
fixed last cached detection for new layout of git repos
-rwxr-xr-x | timeline/tlcacher.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/timeline/tlcacher.php b/timeline/tlcacher.php index 91dfc57..a71fd75 100755 --- a/timeline/tlcacher.php +++ b/timeline/tlcacher.php @@ -196,7 +196,7 @@ foreach ($git_repos as $repo) { $pos = strpos($repo, "/"); $reponame = substr($repo, $pos+1); $branch = ""; - $last_git = last_cached_git($repo); + $last_git = last_cached_git($reponame); $out = array(); $res = 0; $done = array(); |