From 532e4623b4bf83b2f0d4be600d80333bc8849a23 Mon Sep 17 00:00:00 2001
From: Robert Sesek <rsesek@bluestatic.org>
Date: Mon, 23 Jan 2006 05:52:18 +0000
Subject: [PATCH] Need to check for the 'c' prefix here

---
 index.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/index.php b/index.php
index ce8f3a5..3e0628f 100644
--- a/index.php
+++ b/index.php
@@ -41,7 +41,7 @@ while ($table = $db->fetch_array($tables))
 
 foreach ($viewsvn->repos->fetch_list() AS $repos)
 {
-	if (!in_array(($hash = md5($viewsvn->repos->fetch_path($repos))) . '_revs', $tablelist))
+	if (!in_array('c' . ($hash = md5($viewsvn->repos->fetch_path($repos))) . '_revs', $tablelist))
 	{
 		$viewsvn->debug("creating new cacheV: $repos");
 		$db->query("
-- 
2.43.5